asp.net web 隠しフィールド

asp.net web 隠しフィールド

隠しフィールドの更新

HiddenField クラス (System.Web.UI.WebControls)

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebFormInv.WebForm1" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title></title>
    <script type="text/javascript">
        function update_hd1() {
            var hd1 = document.getElementById("<%= hd1.ClientID %>");
            hd1.value = "bye";
        }
    </script>
</head>
<body>
    <form id="form1" runat="server">
        <div>test-page</div>
        <asp:HiddenField id="hd1" runat="server" value="welcome"/>
        <div>
            <a href="#" onclick="update_hd1()">update_hd</a>
        </div>
    </form>
</body>
</html>

ページ間でHiddenFieldを使う

Visual C# 2005 ページ間でHiddenFieldを使う