0

我在 ASPX 页面中有 2 个用户控件。默认情况下,应禁用第二个用户控件。在该用户控件中,我只有一个文本框。所以我在页面加载事件中找到了这样的控件:

TextBox txtLocation = (TextBox)PI_CompLocationTree.FindControl("txtLocation");
txtLocation.Enabled = false;

但我将 txtLocation 设为空。如何从 ASCX 控件中获取 ASPX 页面中的控件?

我更新的代码..在 Aspx 页面..

<%@ Register Src="~/UserControl/PI_CompLocationTree.ascx" TagName="PI_CompLocationTree"
TagPrefix="uc1" %>

 <div id="Div2">
   <div class="location">
      <div class="usLocation">
           <uc1:PI_CompLocationTree ID="PI_CompLocationTree1" runat="server"/>
       </div>
   </div>
 </div>

在页面加载...

 PI_CompLocationTree PI_CompLocationTree = new PI_CompLocationTree();

 protected void Page_Init(object sender, EventArgs e)
 {
    var userControl = (PI_CompLocationTree)this.FindControl("PI_CompLocationTree1");
    userControl.EnabledTextBox = false;
 }

在 ASCX 页面中...

<asp:TextBox ID="txtLocation" CssClass="fadded_text fadded_text_ctrl" Style="width: 260px;
float: left;" runat="server" Text=""></asp:TextBox>

在 ASCX 代码背后...

public partial class PI_CompLocationTree : System.Web.UI.UserControl
{
    public bool EnabledTextBox
    {
        get { return txtLoc.Enabled; }
        set { txtLoc.Enabled = value; }
    } 
}
4

4 回答 4

2

使用 FindControl 方法如下..

1.  UserControlClass objOfUserControl = (UserControlClass)Page.FindControl("UserControlID");
    TextBox txtLocation= objOfUserControl.FindControl("txtLocation");
    txtLocation.Enabled = false; 

2.您也可以使用公共财产如下

在用户控制代码隐藏中

public bool TextBoxUSC
{
  set{txtLocation.Enabled = value;}
}

在 Aspx 代码后面

UserControlClass.TextBoxUSC=false;

如果您使用母版页

    ContentPlaceHolder cph = (ContentPlaceHolder)this.Page.Master.FindControl("MainContent");//"MainContent" is ContentPlaceHolder's ID

    UserControlClass userCntrl = (UserControlClass)cph.FindControl("UserControlID");
    userCntrl.TextBoxUSC = false;
于 2012-08-29T11:19:06.687 回答
1

尝试这个

已编辑

用aspx制作Enabled false你可以这样制作:

将属性添加到您的 UC:

 public bool EnabledTextBox
 {
    get{return IdTextBox.Enabled;}
    set{IdTextBox.Enabled=value;}
 }

然后在 aspx 中:

IdOfYourUserControlWithProperty.EnabledTextBox = false;

希望能帮助到你

于 2012-08-29T10:57:52.813 回答
0

罗宾 你可以删除

TextBox txtLocation = (TextBox)PI_CompLocationTree.FindControl("txtLocation");
txtLocation.Enabled = false;

在您的 aspx 中,添加带有 runat="server" 的表单

也删除

PI_CompLocationTree PI_CompLocationTree = new PI_CompLocationTree();

您不需要,因为您使用 FindControl

你的工作很好

于 2012-08-29T10:57:28.537 回答
0
PI_CompLocationTree1.EnabledTextBox = false; //from .aspx page.  There's no need to use FindControl if you've added it statically to the webpage.
于 2012-08-29T13:24:49.233 回答