要素のリストがあり、それを編集したいと考えています。
このスニペットを作成しました:
@{
ViewBag.Title = "Liste des comptes administrateurs";
Layout = "~/Views/Shared/_Layout.cshtml";
int i = 0;
}
<hgroup class="title">
<h1 style="color: darkcyan">@ViewBag.Title</h1>
</hgroup>
<section>
<form>
<table>
<tr>
<td><input type="radio" name="color" id="val" value="red" onclick="@i = 1;">Red</td>
</tr>
<tr>
<td><input type="radio" name="color" value="blue" onclick="@i = 2;">Blue</td>
</tr>
</table>
</form>
</section>
<section style="margin-top: 30px">
<a type="button" href="@Url.Action( "Delete", "Super", new { Id = @i } )">Supprimer</a>
<a type="button" href="@Url.Action( "Edit", "Super", new { Id = @i } )">Editer</a>
<br />
<br />
<a href="@Url.Action( "Admin_Creation", "Super" )" style="color: blue; margin-left: 150px">Créer un nouveau compte</a>
</section>
私の問題は、エディションのボタンをクリックするi
と、ラジオ ボタンの 1 つをチェックしても値が 0 になることです。その値は変化せず、常に 0 です。
- の値が
i
変わらないのはなぜですか? - このエラーを修正するにはどうすればよいですか?