我的aspx页面中有一个隐藏变量,即mainpage.aspx
<asp:HiddenField runat="server" id="hdnCommonvCode" />
mainpage.aspx包含tabcontainer控件。在每个选项卡上添加用户控件。如果我尝试从usercontrol访问此隐藏字段alert($find("<%=hdnCommonvasCode.ClientID %>"));
,则会显示编译器错误消息msg
Compiler Error Message: CS0103: The name 'hdnCommonvCode' does not exist in the current context
答案 0 :(得分:2)
您是否尝试过此var hidx = document.getElementById('hdnCommonvCode');