我在 default.aspx 的表单上有一个文本框和一个按钮,在我的 DownloadHandler.ashx 中,我从 HttpContext.Request.Form("txtURI") 获得了我需要的值:
<asp:TextBox ID="txtURI"
AutoPostBack="true"
runat="server"></asp:TextBox>
<asp:Button ID="DownloadButton"
PostBackUrl="~/DownloadHandler.ashx"
runat="server"
Text="Download"/>
我想更改它,以便将输入文本框中的值作为查询字符串传递给 DownloadHandler.ashx(而不是从 Request.Form 中选择它)。
实现这一目标的最佳方法是什么?