If you enter textbox in values even display another Label or Textbox show same values
Select one Label from ToolBox - Give to ID name Label1
Textbox values show to label
Select one textbox from tool box - give Id name TextBox1 & AutoPostback = True and textbox double click -coding give to below like that
protected void TextBox1_TextChanged(object sender, EventArgs e)
{
Label1.Text = Server.HtmlEncode(TextBox1.Text);
}
0 comments:
Post a Comment