|
|
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>
'Like' us on our FaceBook page if you find this blog useful. Thanks!
Did you like this post?
|
|
|
||
|
|
|
|
Save on Delicious |
|
|
subscribe via rss |
|
subscribe via e-mail |
|
|
print this post |
|
follow me on twitter |





comments
1 Response to "Copy Text From One ASP.NET TextBox To Another"Excellent! Thank you.
Post a Comment