Friday, May 22, 2009

Enter Text In Into Two TextBoxes At the Same Time


function makesame()
{
document.getElementById('TextBox2').value=document.getElementById('TextBox1').value;
}
//Here makesame() function is called with TextBox1 onkeyup event

asp:TextBox ID="TextBox1" runat="server" onkeyup="makesame()"




No comments:

Post a Comment