hi
Abhisekjani
try this code
client Side
<asp:TextBox ID="text1" runat="server" AutoPostBack ="true"
ontextchanged="text1_TextChanged" TextMode="MultiLine"
Width="200px"></asp:TextBox>
Server Side
protected void text1_TextChanged(object sender, EventArgs e)
{
Response.Write(text1.Text);
}
this is working in my pc see this image file also
Mark as Answer if its helpful to you
Regards
Email Id: kumaraspcode2009@gmail.com
Abhisekjani, if this helps please login to Mark As Answer. |
Reply | Alert Moderator