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"]