ユーザーが ASP ページのチェックボックスをクリックしたときに、Html テーブル (id='xx') を表示したいだけです。ユーザーがチェックボックスのチェックを外すと、テーブルは再び非表示になります。
<table>
<tr>
<td colspan='2'>
<table id='xx'>
<tr>
<td colspan='2'>
Student Information :
</td>
</tr>
<tr>
<td>
<asp:Label ID="Label1" runat="server" Text="Select Student name :"></asp:Label>
</td>
<td>
<asp:DropDownList ID="DropDownList1" runat="server" Width="200px">
</asp:DropDownList>
</td>
</tr>
...
私はこのコードを試しました:
protected void CheckBox1_CheckedChanged(object sender, EventArgs e)
{
if (CheckBox1.Checked == true)
{
// need a way to hide the Table id='xx'
}
else {
DropDownList1.Visible = true; // This is also not working
}
}
私を助けてください。