I have a [WebMethod] and i want to assign values to a text box using the this code:
[WebMethod]
public static void MyMethod(string s)
{
//TextBox1.Text = s; //Here how can i access the textbx?
}
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can’t.
The whole point of
[WebMethod]s is that they don’t run the ASP.Net page lifecycle. This way, they’re fast and parallelizable.Your controls don’t exist.
Instead, you should use Javascript (better) or an UpdatePanel (worse).