Hi,
How to check if a method is called from Ajax method or from normal postback server button.
[Ajax.AjaxMethod(HttpSessionStateRequirement.ReadWrite)]
public string AJAXCallChanges()
{
Test();
}
protected void btnServer_Click(object sender, EventArgs e)
{
Test();
}
In the Test method, how to check if called from normal button or from Ajax method .
Thank you
...
Go to the complete details ...