How to assign the text to the label using Jquery for the web controls
- by Vara Prasad
i am having and by using jquery ineed to assign another text "hello" to the label "lbl" through the jquery.
and if we access the label "lbl" the text "hello" should come because the value "hai" is replaced with "hello" and if we write the below line i should get the new modified lable in aspx.cs file
my aspx.cs file code is
switch(lbl.Text)
{
case "hello":
code...
break;
}