F
Francois
Hi,
I have a form which contains some non server side controls.
I have seen in the generated HTML of a page that non server side controls
can be read by the server code (C# or VB.NET) as the the ASP.NET framework
itself generated non server side hidden fields used for the postaback.
<input type="hidden" name="__EVENTTARGET" value="" />
<input type="hidden" name="__EVENTARGUMENT" value="" />
<input type="hidden" name="__VIEWSTATE" value="dDwtMTU0NzYzMDE">
I would like to myself use it but I did not find a way to access it. I tried
with the propoerty : request.Form but it seems empty as
Request.Form.HasKeys() returns false.
anyone can help me about how to read the different input fields (the body)
of the form in an old fashioned way (without using the server side
controls).
Thanks
Francois
I have a form which contains some non server side controls.
I have seen in the generated HTML of a page that non server side controls
can be read by the server code (C# or VB.NET) as the the ASP.NET framework
itself generated non server side hidden fields used for the postaback.
<input type="hidden" name="__EVENTTARGET" value="" />
<input type="hidden" name="__EVENTARGUMENT" value="" />
<input type="hidden" name="__VIEWSTATE" value="dDwtMTU0NzYzMDE">
I would like to myself use it but I did not find a way to access it. I tried
with the propoerty : request.Form but it seems empty as
Request.Form.HasKeys() returns false.
anyone can help me about how to read the different input fields (the body)
of the form in an old fashioned way (without using the server side
controls).
Thanks
Francois