Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我用谷歌搜索了这个,但不知道如何设置隐藏字段的值。我有以下代码:
<asp:HiddenField id="fileId" runat="server" value="<%# Response.Write(Request.QueryString["fileID"]) %>" />
我只是想让值 =fileID查询字符串中的值。
fileID
谢谢你的帮助。
尝试:
<asp:HiddenField id="fileId" runat="server" value='<%= Request.QueryString["fileID"] %>' />
相信“=”运算符意味着 Response.Write 为您服务。
只是为了完整起见,您也可以在代码隐藏中设置它,例如
fileId.Value = Request.QueryString["fileID"]