Access textbox value from ashx page

Tulaniumn

New Member
This is my Form Tag from The Master Page:\[code\]<form id="form1" runat="server" action="Handler.ashx" method="POST" enctype="multipart/form-data">\[/code\]I have a \[code\]TextBox\[/code\] in my Content Page:\[code\]<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>\[/code\]I want to access the \[code\]TextBox\[/code\] value in the \[code\]Handler.ashx\[/code\] page Or Send the \[code\]TextBox\[/code\] value as a query string in the \[code\]action\[/code\] attribute like this \[code\]<form id="form1" runat="server" action="Handler.ashx?textBoxVal=SOMETHING" method="POST" enctype="multipart/form-data">\[/code\]Is this possible?
 
Back
Top