Add the following TextBox to your page
<asp:TextBox ID="txtOne" runat="server" onkeyup="OneTextToOther();"></asp:TextBox>
<asp:TextBox ID="txtTwo" runat="server"></asp:TextBox>
Now add the following JavaScript in the <head> section of your page
<head>
<title></title>
<script type="text/javascript">
function OneTextToOther() {
var first = document.getElementById('<%= txtOne.ClientID %>').value;
document.getElementById('<%= txtTwo.ClientID %>').value = first;
}
</script>
</head>
Tweet
1 comment:
Excellent! Thank you.
Post a Comment