3

为什么方法在call 之前FindControl()返回。nullFormViewDataBind()

之后它会正确返回所有内容吗?

有什么解决方法?

在第一次调用DataBind()之前调用FindControl()?

4

5 回答 5

5

要么显式调用 DataBind(),要么将代码放在 FormView 的 DataBound 事件中。

于 2010-01-31T11:51:13.500 回答
3

在建立任何数据之前,如何FormView获得有关其内容的任何信息?

所以我猜你已经回答了你自己的问题,你必须DataBind()之前。

于 2010-01-31T11:36:05.237 回答
0

它与 BINDING 无关。一个是寻找服务器控制,而不是它的绑定数据。SO - 控制应该可以通过 FindControl 获得。原因在别的地方……

于 2010-11-13T02:21:24.033 回答
0

这很奇怪。仅调用 DataBind() 对我不起作用。我必须创建一个新列表,添加一个项目,设置为数据源,然后是数据仓。

List<Item> dummyList = new List<Item>();
dummyList.Add(new Item());
formview.DataSource = dummyList;
formview.DataBind();
于 2014-07-30T00:51:20.093 回答
0

我的经历是这样的

System.Web.UI.HtmlControls.HtmlImage bookmarkload = sessionDetail.FindControl("bookmarkimage") as System.Web.UI.HtmlControls.HtmlImage;

返回null

所以,我这样做了:

 protected void sessionDetail_DataBound(object sender, EventArgs e)
        {
            LoadBookmarkImage();
        }
  private void LoadBookmarkImage()
        {
            //if (_swapDetails != null)
            //{             
                try
                {
                    _currnetSession = new SessionBL(_user);

                    List<SessionVO> _tmp = null;
                    string sample = Convert.ToString(Page.RouteData.Values["sessionCode"]);
                    if (Session["Prefernce"] != null)
                    {
                        _tmp = (List<SessionVO>)Session["Prefernce"];
                    }
                    if (_tmp != null && _tmp.Count > 0)
                    {
                        _tmp = _tmp.Where(p => p.SessionCode == sample).ToList();
                    }

                    //_currentFavorite.SessionD = _swapDetails[0];
                    _currentFavorite.SessionD = _tmp[0];

                    List<FavoriteVO> _swapList = _user.ViewFavoriteONID(_currentFavorite.SessionD.SessionID);

                    if (_swapList != null && _swapList.Count > 0)
                    {
                        //access javascript counter variable
                        ScriptManager.RegisterStartupScript(this, this.GetType(), "", "counter=1;", true);
                        System.Web.UI.HtmlControls.HtmlImage bookmarkload = sessionDetail.FindControl("bookmarkimage") as System.Web.UI.HtmlControls.HtmlImage;
                        bookmarkload.Src = "/Images/heart-checked.png";
                    }
                }
                catch (Exception ex)
                {
                    labelinfo.Visible = true;
                    labelinfo.InnerHtml = ex.Message;
                    labelinfo.Attributes["class"] = "centering text-center text-danger";
                }
            //}
        } 
于 2016-05-12T12:57:09.943 回答