Results 1 to 20 of 20

Thread: A small URL Bamboozlement [Resolved]

Threaded View

  1. #6
    Addicted Member rdove's Avatar
    Join Date
    Dec 2002
    Location
    Indianapolis
    Posts
    251

    Re: A small URL Bamboozlement [Resolved]

    I don't know why you are having a problem, I just did some testing (in vb.net) and did not have any issues, maybe your circumstance is different somehow.

    webform1 (page_load)
    VB Code:
    1. Response.Redirect("webform2.aspx?body=Hello how are \n you!?")

    webform2 (page_load)
    VB Code:
    1. Dim str As String = Request.QueryString("body").ToString
    2.  
    3. str = str.Replace("\n", System.Environment.NewLine)
    4.  
    5. TextBox1.TextMode = TextBoxMode.MultiLine
    6. TextBox1.Text = str

    Image of the output is attached
    Attached Images Attached Images  
    Last edited by rdove; Feb 1st, 2005 at 10:51 AM.
    ~Ryan





    Have I helped you? Please Rate my posts.

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