The OnTextChanged
is a server side event . It would be better to use JavaScript for this purpose like this:
<script type="text/javascript">
function change() {
document.getElementById('<%= lblmain.ClientID %>').innerHTML = document.getElementById('<%= txtMain.ClientID %>').value;
}
</script>
And then in your TextBox
call to change
function like this:
<asp:TextBox ID="txtMain" runat="server" onkeydown="change();"></asp:TextBox>
<asp:Label ID="lblmain" runat="server" Text="Label"></asp:Label>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…