Input box
-
Hi, All Please assist me how can I use Input box in asp.net 2.0. Which similar to Input box in windows application. Currently I am using Input box of visual basic by adding the dll but it is not appearing in front of the web page. Thanks Sapan Roy Help me out in this issue
-
Hi, All Please assist me how can I use Input box in asp.net 2.0. Which similar to Input box in windows application. Currently I am using Input box of visual basic by adding the dll but it is not appearing in front of the web page. Thanks Sapan Roy Help me out in this issue
The easiest way is to do this using a javascript prompt box, using code like
name=prompt("Please enter your name","Enter your name here");
Obviously this is client side and if you need to send this to the server you will need to do something like put the value into a hidden control on the form and perform a postback. Hoep that helps