B
Brad Williams
I want to see posted values from old-school INPUT tags, but when I do this:
<form id="Form1" method="post" runat="server">
<input type=text id="test1" value="hello" >
<asp:Button ID="btnSubmit" Text="Submit" Runat="server"></asp:Button>
</form>
in the btnSubmit_Clicked callback I do not see a key for "test1" in the
Request.Forms collection as I would expect. How/where can I see such
submitted values? I do not want to use runat=server.
Brad Williams
<form id="Form1" method="post" runat="server">
<input type=text id="test1" value="hello" >
<asp:Button ID="btnSubmit" Text="Submit" Runat="server"></asp:Button>
</form>
in the btnSubmit_Clicked callback I do not see a key for "test1" in the
Request.Forms collection as I would expect. How/where can I see such
submitted values? I do not want to use runat=server.
Brad Williams