I'm trying to return some text which was inputted into a textbox element on my website. After entering some text into it I noticed that this didn't return data:
document.getElementById('myTextBox').text;
But this did:
document.getElementById('myTextBox').value;
EDIT: The javascript above was used client side to test what was being read, using .text returns an empty string which, when passed back to the server, did indeed show an empty string. .value contained my entered data but when I tried using .value server side the errors occurred.
However in my .cs class when I tried to add the following:
string myInput = myTextBox.Value;
I get an error message saying
"System.Web.UI.WebControls.TextBox doesn't contain a definition for 'Value'...".
The example I was referencing came from here: http://www.aspsnippets.com/Articles/Get-value-of-HTML-Input-TextBox-in-ASPNet-code-behind-using-C-and-VBNet.aspx
My textbox is declared like:
<asp:TextBox ID="myTextBox" runat="server"></asp:TextBox>
However when I try to change the TextBox element to an Input element I get an error saying "The type or namespace name 'Input' does not exist..."
How can I pass the data which was entered into my TextBox back to the server?