SweawayRapy
New Member
In my asp.net Form page I have a TextBox control like this\[code\]<asp:TextBox ID="txtQuestion" runat="server" MaxLength="1000" TextMode="MultiLine" Width="99%" Height="50px"></asp:TextBox>\[/code\]when i type a long sentence (250+ characters) and submit the form in the code behind page I only get 250 character when I user this \[code\]txtQuestion.Text\[/code\]However, when I use this\[code\]Request[txtQuestion.UniqueID]\[/code\]I get the whole sentence.I can't seem to figure out why this is happening. Can anyone help me out here?