こんにちは、Cookie からテキスト ボックスに値を読み込もうとしています。私の HTML は以下のとおりです。
<fieldset class="boxBody">
<label id="dis" style="margin:0 auto;display:none"></label>
<label>Username</label>
<input type="text" name="Username" id="txtUsername" runat="server" tabindex="1" placeholder="Username" />
<label>Password</label>
<input type="password" name="password" id="txtpassword" runat="server" placeholder="Password" tabindex="2" />
</fieldset>
そしてページロードの私のコードは
txtUsername.Value = Request.Cookies["SN"]["UserName"];
txtpassword.Value = Request.Cookies["SN"]["Password"];
何が起こるかは、パスワードの代わりにプレースホルダーのみが表示されます.タイプをテキストに変更すると機能します.ページがロードされたときにテキストを追加する方法