textbox and array

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • loc2006@gmail.com

    textbox and array

    I have a multi-line textbox in a classic ASP web page.

    Each line looks something like this
    1,Joe
    2,Jane
    3,Bob

    Is it possible to use classic ASP to extract each line and store it in
    an array? I want to perform an INSERT into an Access table for each
    line. I see solutions for ASP.NET but not for classic asp.

    thanks!
  • Bob Barrows [MVP]

    #2
    Re: textbox and array

    loc2006@gmail.c om wrote:
    I have a multi-line textbox in a classic ASP web page.
    multiline?
    Do you mean a textarea? You'd better show us the html for this textbox


    --
    Microsoft MVP -- ASP/ASP.NET
    Please reply to the newsgroup. The email account listed in my From
    header is my spam trap, so I don't check it very often. You will get a
    quicker response by posting to the newsgroup.


    Comment

    • loc2006@gmail.com

      #3
      Re: textbox and array

      On Dec 27, 10:07 am, "Bob Barrows [MVP]" <reb01...@NOyah oo.SPAMcom>
      wrote:
      loc2...@gmail.c om wrote:
      I have a multi-line textbox in a classic ASP web page.
      >
      multiline?
      Do you mean a textarea? You'd better show us the html for this textbox
      >
      I apologize for that. Yes, it's a textarea.

      Comment

      • loc2006@gmail.com

        #4
        Re: textbox and array

        On Dec 27, 2:23 pm, loc2...@gmail.c om wrote:
        On Dec 27, 10:07 am, "Bob Barrows [MVP]" <reb01...@NOyah oo.SPAMcom>
        wrote:
        >
        loc2...@gmail.c om wrote:
        I have a multi-line textbox in a classic ASP web page.
        >
        multiline?
        Do you mean a textarea? You'd better show us the html for this textbox
        >
        I apologize for that. Yes, it's a textarea.
        Got if figured out. Here is the gist of the code I was looking for

        <%
        if request.form("s tudents") <"" then
        strStu = Request.Form("s tudents")
        arrStu = Split(strstu,vb CrLf)
        For intstu = 0 To UBound(arrstu)
        arrstu2 = Split(arrstu(in tstu),",")
        'Response.Write arrstu2(0) & "|" & arrstu2(1)
        'construct INSERT SQL
        'response.write "<br />"
        Next
        end if
        %>

        Comment

        Working...