if the input field was generated in Client-side Javascript by
document.write, how to retrieve the data of the input field in code behind?
Thanks
Jon Paal - 21 Dec 2006 15:46 GMT
trigger a post back event to pick it up
> if the input field was generated in Client-side Javascript by document.write, how to retrieve the data of the input field in code
> behind?
>
> Thanks
bruce barker - 21 Dec 2006 16:24 GMT
if you assigned a name attribute to the field, the browser will post it
back with other form field. you can then pick it up on the server side
but using Request.Form["name"].
-- bruce (sqlwork.com)
> if the input field was generated in Client-side Javascript by
> document.write, how to retrieve the data of the input field in code behind?
>
> Thanks