回发后获得控制价值

时间:2013-03-15 03:02:26

标签: c# asp.net user-controls code-behind

我在页面中有一个动态控件。它已被codebehind添加到此页面。

FileUpload fu = new FileUpload();
fu.ID = "fu";
fu.EnableViewState = true;
list.Add(fu);

Button btnFu = new Button();
btnFu.Text = "Upload";
btnFu.ID = "btnFu";
list.Add(btnFu);

使用postBack后,我无法从此fileUpload获取值。

if (!IsPostBack) {

}
else {
      string str_btn = null;
      if (Request.Form.Keys[Request.Form.Keys.Count - 1] != null)
                    str_btn = Request.Form.Keys[Request.Form.Keys.Count - 1].ToString();
      if (!string.IsNullOrEmpty(str_btn)) 
                    handleClick(str_btn);

}

任何人都有解决方案吗?

3 个答案:

答案 0 :(得分:0)

我会尝试使用Page.FindControl(“fu”)搜索控件。这个问题的答案中有一些有趣的选项,涵盖了在使用主页和用户控件时查找控件等问题。

ASP.Net FindControl is not working - How come?

答案 1 :(得分:0)

我怀疑您添加控件的列表是一个内容容器,因此您必须先获取对它的引用,然后调用FindControl("btnFu")方法。

// var list = yourListControl
Button btnFu = list.FindControl("btnFu") as Button;
if(btnFu != null)
{
    // Operate on the button
}

答案 2 :(得分:0)

我相信你需要在帖子上重新创建动态创建的控件。

public class YourPage : System.Web.UI.Page
{
      protected bool AreControlsCreated {
      {
          get{return (bool)ViewState["AreControlsCreated"];}
          set{ViewState["AreControlsCreated"] = value;}
      }

      private void Page_Load(object sender, System.EventArgs e)
      {
          if(!IsPostBack)
          {
              AreControlsCreated = false;
          }
          else if(AreControlsCreated)
          {
              CreateYourControls();
          }
      }

      private void CreateYourControls()
      {
        ...
        FileUpload fu = new FileUpload();
        fu.ID = "fu";
        fu.EnableViewState = true;
        list.Add(fu);

        Button btnFu = new Button();
        btnFu.Text = "Upload";
        btnFu.ID = "btnFu";
        list.Add(btnFu);

        AreControlsCreated = true;
      }

      protected void YourButton_Click(object sender, EventArgs e)
      {
          createYourControls();
      }
}