Advertisement
Advertisement
| 09.05.2008 at 06:55AM PDT, ID: 23706202 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: |
<table width="750" border="0" align="center">
<tr bgcolor="#CCCCCC">
<td width="110" align="center" valign="top">Field/Column# </td>
<td width="380" valign="top">
<!-- <form> Field Label/ Column Heading Got to Line: <input type="text" id="buttonvalue" /><input type="submit" name="submit" /></form> !-->
<form id="Form1" runat="server">
Field #: <asp:TextBox runat="server" id="txtName" />
<asp:TextBox ID="TextBox1" runat="server" style="visibility:hidden;display:none;" />
<asp:Button ID="Button1" runat="server" Text="Submit" />
</form>
</td>
<td width="246" align="center" valign="top">BERWYN Field Label </td>
</tr>
<%
Dim filetoread As String
Dim filestream As StreamReader
Dim readcontents As String
Dim textdelimiter As String
textdelimiter = ","
Dim j As Integer
Dim inputThing As String
filetoread = Server.MapPath("readTest.csv")
filestream = File.OpenText(filetoread)
' CInt converts the string to an integer....but errors with incorrect format
inputThing = CInt(txtName.Text)
' This is the loop
For j = 1 To inputThing
If IsNumeric(txtName) Then
readcontents = filestream.ReadLine()
End If
Next
Dim splitout = Split(readcontents, textdelimiter)
Dim i As Integer
For i = 0 To UBound(splitout)
Response.Write("<tr><td>" & i & "</td>")
Response.Write("<td bgcolor=#A9C399>" & splitout(i) & "</td>")
Response.Write("<td><select name=dropDown > <option value=zip>Zip</option> <option value=state>State</option><option value=ssi>Social Security Number</option><option value=lastName>Last Name</option><option value=firstName>First Name</option><option value=dob>Date of Birth</option><option value=benefitAmount>Benefit Amount</option><option value=clientNum>Client Number</option><option value=remark2>Remark 1</option><option value=remark1>Remark 2</option><option value=addressL3>Address Line 1</option><option value=addressL2>Address Line 2</option><option value=addressL1>Address Line 3</option><option value=city>City</option></select></td> </tr>")
Next
filestream.Close()
%>
</table>
|