Results 1 to 3 of 3

Thread: Passing Long String

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Feb 1999
    Location
    Belfast
    Posts
    254
    Hi,
    I need to pass a very ( > 1000 chars ) string from one ASP page to another. I tried embedding the string into a querystring but didn't recon on the string size restriction. How can I pass the string to another ASP page via a hyperlink, apart from using cookies or session variables. At the moment I have

    Check for Records in the Array
    if isarray(vRecordArray) then
    if UBound(vRecordArray, 2) >= 0 then
    '-- Cycle through records
    For lngIndex = 0 to UBound(vRecordArray, 2)
    Detail_Summary = left(vRecordArray(DETAIL, lngIndex), 20)%>
    <tr>
    <td><font face="Arial"><A HREF="http://localhost/HBM/ASPSource/News/NewsDetails.asp?Headline=<%=vRecordArray(HEADLINE, lngIndex)%>&Detail=<%=vRecordArray(DETAIL, lngIndex)%>"><%=vRecordArray(HEADLINE, lngIndex)%></font></td>
    <td><font face="Arial"><%=Detail_Summary%></font></td>
    </tr>
    <%Next
    else
    Response.Redirect ("http://localhost/HBM/ASPSource/ErrorPage.asp?Error_Message=ARRAY_EMPTY")
    end if
    else

    etc.


    Any help greatly appreciated.

    Lenin

  2. #2
    Frenzied Member monte96's Avatar
    Join Date
    Sep 2000
    Location
    Somewhere in AZ
    Posts
    1,379
    Try using this:
    <TEXTAREA Style="visibility: hidden" ID=txtMyText name=txtMyText>
    You can put your text in here and use a form to submit it to the next page. It should not be visible but will transfer to the next page.
    </TEXTAREA>
    oOOo--oOOo
    __/\/\onte96
    oOOo--oOOo
    Senior Programmer/Analyst
    MCP
    [email protected]
    [email protected]


    Your results may vary.. some restrictions may apply.. pricing and participation may vary.. not available in all states.. professional driver closed course..quantities limited..

  3. #3

    Thread Starter
    Addicted Member
    Join Date
    Feb 1999
    Location
    Belfast
    Posts
    254
    Thanks Monte96

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width