这是我在母版页中的表单标签:
<form id="form1" runat="server" action="Handler.ashx" method="POST" enctype="multipart/form-data">
TextBox
我的内容页面中有一个:
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
我想访问页面TextBox
中的值Handler.ashx
或将TextBox
值作为action
属性中的查询字符串发送,如下所示<form id="form1" runat="server" action="Handler.ashx?textBoxVal=SOMETHING" method="POST" enctype="multipart/form-data">
这可能吗?