Nov 19, 2005 #1 josh9999 Programmer Nov 18, 2004 7 US Lets say I have Response.Write("<script> var nm =document.ContactForm.Name.value;</script>"); Is there a way to store nm in a C# string variable. string name = nm; Please suggest
Lets say I have Response.Write("<script> var nm =document.ContactForm.Name.value;</script>"); Is there a way to store nm in a C# string variable. string name = nm; Please suggest
Nov 20, 2005 #2 BillyRayPreachersSon Programmer Dec 8, 2003 17,047 GB You'd have to send the contents of that variable server-side - which is usually done by a form submission, or by adding parameters onto a URL. Hope this helps, Dan [tt]Dan's Page [blue]@[/blue] Code Couch http://www.codecouch.com/dan/[/tt] Upvote 0 Downvote
You'd have to send the contents of that variable server-side - which is usually done by a form submission, or by adding parameters onto a URL. Hope this helps, Dan [tt]Dan's Page [blue]@[/blue] Code Couch http://www.codecouch.com/dan/[/tt]