Advertisement

09.05.2008 at 06:55AM PDT, ID: 23706202
[x]
Attachment Details

looping csv mapping and some errors

[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.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

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!

8.0
Tags:

VB .net ASP, Input string was not in a correct format.

I am working on a CSV reader and writer, but using an HTML table to read/write to. Currently I'm trying to have the user input a number into an asp textbox that will goto that line in the csv and read it. I am able to read the file and parse it fine, but the issue is setting up the textbox and the loop. Below is the code.
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>
 
Accepted Solution by rlh68:

All comments and solutions are available to Premium Service Members only. Start your 7-day free trial to view the solution to this question.

Already a member? Login to view this solution.

 
 
Administrative Comment by TheLearnedOne:

All comments and solutions are available to Premium Service Members only. Start your 7-day free trial to view the solution to this question.

Already a member? Login to view this solution.

 
 
Administrative Comment by Computer101:

All comments and solutions are available to Premium Service Members only. Start your 7-day free trial to view the solution to this question.

Already a member? Login to view this solution.

 
 
20081119-EE-VQP-46 / EE_QW_2_20070628