サーバー側のメソッドを jquery で呼び出し、そのメソッドからページ コントロールにアクセスしようとしていますが、エラーが発生します。これが私のサンプルコードです
[WebMethod]
public static findEvents(string PID)
{
Page page = HttpContext.Current.Handler as Page;
Panel pn=(Panel)page.FindControl("hdContainer");
}
but find control gives null error. please give any solution to find control in static method.