选中复选框后自动回发

时间:2018-08-12 07:09:13

标签: c# asp.net

//C# Code

protected void CheckBox1_CheckedChanged(object sender, EventArgs e)
    {
        TextBox2.Text = TextBox1.Text;
    }
 <h2 style="font-style: italic">
            <asp:Label ID="Label5" runat="server" Text="Residental Address  : "></asp:Label>
&nbsp;&nbsp;
            <asp:TextBox ID="TextBox1" runat="server" TextMode="MultiLine"></asp:TextBox>
        </h2>
        <h2 style="font-style: italic">
            <asp:CheckBox ID="CheckBox1" runat="server" AutoPostBack="True" oncheckedchanged="CheckBox1_CheckedChanged" Text="Both Same" />
        </h2>
        <h2 style="font-style: italic">
            <asp:Label ID="Label9" runat="server" Text="Native Address :"></asp:Label>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            <asp:TextBox ID="TextBox2" runat="server" TextMode="MultiLine"></asp:TextBox>
        </h2>
如果居民地址是相同的,那么在单击复选框时,它必须将其自动回传到其本机地址,但是我尝试过并且它显示为空白

1 个答案:

答案 0 :(得分:0)

单击复选框后是否跟踪PageLoad事件,并查看文本框是否在代码中的某个位置被重置? 否则应该可以。