Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
POST method of form
Message
General information
Forum:
ASP.NET
Category:
Other
Miscellaneous
Thread ID:
00594478
Message ID:
00595072
Views:
24
Hi Dave,

That Chr(34) was perfect. Thanks once again.


>Look at the HTML produced by your asp page. You will see something like:
>
>VALUE=abcd efgh ijklmn
>
>The browser will interpret this as VALUE="abcd" and ignore the rest. Just put quotes around the whole string:
>
>Response.Write("VALUE=" + CHR(34) + Request.Form("param1") + CHR(34)+ ">")
>
>or
>
>Response.Write("VALUE="" + Request.Form("param1") + "">")
>
>I like using CHR(34) because it makes it more obvious to me. Also, get used to calling Response.Write with the parentheses (), as this will be the ASP.NET way.
>
>Instead of using hidden input boxes, you could also pass parameters in the session object or the url string.
>
>-Dave
>
Previous
Reply
Map
View

Click here to load this message in the networking platform