最初のボックスのオプションが「州」と「州」であり、2番目のボックスが最初の選択に基づいて入力されるドロップダウンメニューが欲しいです(州->米国の州、州->カナダの州)ここに私が持っているコードがありますこれまでのところ:
<form id="updateTreventLocation" action="
<table>
<%=Url.Action("SavedTreventLocation","Prod")%>" method="post">
<tr>
<td colspan="2" class="label">City:</td>
<td class="content">
<input type="text" maxlength="100" name="CityLocation" value="<%=EditTreventLocation.locationCity%>" />
</td>
</tr>
<tr>
<td colspan="2" class="label">Province/State:</td>
<td class="content">
<input type="text" maxlength="50" name="ProvinceLocation" value="<%=EditTreventLocation.locationProvince%>" />
</td>
</tr>
</table>
</form>