I have a aspx pge which is connected to Master page. On aspx page I have taken Hidden Field.
<asp:HiddenField ID="hdnLoggedinUser" runat="server" />
But hidden field is not accessible inside Static Web Method.
You can not. Controls cannot be accessed in static web methods.
You have to access at client side.
Refer
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.