Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 Development Tools
 ASP.NET
 Add Functionality

Author  Topic 

saidev
Posting Yak Master

101 Posts

Posted - 2006-09-15 : 20:04:44
Hi Guys,

I have 2 text boxes and 1 add button. If i add some data to 1st text box then the data needs to display in the second Text box immediately if i click on Add button. Can you guys help me how to do this.

I am using VB.NET/ASP.NET

Thanks,

DonAtWork
Master Smack Fu Yak Hacker

2167 Posts

Posted - 2006-09-18 : 14:18:21
Immediately? Javascript is your friend.

Otherwise, you are going to have to make a trip to the server.

[Signature]For fast help, follow this link:
http://weblogs.sqlteam.com/brettk/archive/2005/05/25.aspx
Learn SQL
http://www.sql-tutorial.net/
http://www.firstsql.com/tutor.htm
http://www.w3schools.com/sql/default.asp
Go to Top of Page

elwoos
Master Smack Fu Yak Hacker

2052 Posts

Posted - 2006-09-18 : 14:28:19
Is this a homework question?

in VB.NET it would be something like

textbox2.text.value = textbox1.text.value in the button click event handler

steve

-----------

Don't worry head. The computer will do all the thinking from now on.
Go to Top of Page
   

- Advertisement -