Http controls and .Net
-
Hi, I'm converting a http form to .aspx and I've managed to change all the fields to controls that will run at the server. However I keep running into a problem, I can't seem to get the user input from the text control. For example is my text control and the user enters some text in it. I then try and get the text by using string a= Text1.value and despite the fact that the user entered the data, a is equal to "" Thanks for the help!!
-
Hi, I'm converting a http form to .aspx and I've managed to change all the fields to controls that will run at the server. However I keep running into a problem, I can't seem to get the user input from the text control. For example is my text control and the user enters some text in it. I then try and get the text by using string a= Text1.value and despite the fact that the user entered the data, a is equal to "" Thanks for the help!!
Use string a = Text1.text Best regards Anders
-
Hi, I'm converting a http form to .aspx and I've managed to change all the fields to controls that will run at the server. However I keep running into a problem, I can't seem to get the user input from the text control. For example is my text control and the user enters some text in it. I then try and get the text by using string a= Text1.value and despite the fact that the user entered the data, a is equal to "" Thanks for the help!!