0

我有一个大问题,当我使用完整的回发时,我可以在我的..._ItemDataBound(...)事件中找到控件DataList,但是使用时AsyncPostBackTrigger我找不到控件并给我 null。

这是我的aspx代码:

<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
    <asp:DataList ID="DataListGallery" runat="server" RepeatColumns="3" RepeatDirection="Horizontal" OnItemDataBound="DataListGallery_ItemDataBound"   >
       <ItemTemplate>
            <asp:LoginView ID="LoginView1" runat="server">
               <LoggedInTemplate>
                   <asp:HiddenField ID="FieldPhoneId" Value='<%# Eval("Phone_InfoID") %>' runat="server" />                    
                       <img src="../images/cart.gif" alt="" title="" border="0" class="left_bt" /></a>--%>
                           <asp:ImageButton ID="btnShop" OnClick="btnShop_Click" ImageUrl="images/cart.gif" CssClass="left_bt_item" title="header=[خريد] body=[&nbsp;] fade=[on]" runat="server" />                    
                       <img src="../images/favs.gif" alt="" title="" border="0" class="left_bt" /></a>--%>
                           <asp:ImageButton CssClass="left_bt_item" title="header=[مورد علاقه] body=[&nbsp;] fade=[on]" OnClick="btnFavourite_Click" ID="btnFavourite"  ImageUrl="images/unfav.png" runat="server" />                      
                       <img src="../images/favorites.gif" alt="" title="" border="0" class="left_bt" /></a>--%>                    
               </LoggedInTemplate>

<Triggers>
                   <asp:AsyncPostBackTrigger ControlID="LinkButton1" EventName="Command"></asp:AsyncPostBackTrigger>
                   <asp:AsyncPostBackTrigger ControlID="LinkButton2" EventName="Command" />
                   <asp:AsyncPostBackTrigger ControlID="LinkButton3" EventName="Command" />
                   <asp:AsyncPostBackTrigger ControlID="LinkButton4" EventName="Command" />
                   <asp:AsyncPostBackTrigger ControlID="LinkButton5" EventName="Command" />
                   <asp:AsyncPostBackTrigger ControlID="LinkButton6" EventName="Command" />
                   <asp:AsyncPostBackTrigger ControlID="LinkButton7" EventName="Command" />
                   <asp:AsyncPostBackTrigger ControlID="LinkButton0" EventName="Command" />
                   <asp:AsyncPostBackTrigger ControlID="btnSearchHead" EventName="Command" />
                   <asp:AsyncPostBackTrigger ControlID="LinkButton8" EventName="Command" />
                   <asp:AsyncPostBackTrigger ControlID="lnkNext" EventName="Click" />
                   <asp:AsyncPostBackTrigger ControlID="lnkPrevious" EventName="Click" />                   
               </Triggers> 

和代码隐藏:

protected void DataListGallery_ItemDataBound(object sender, DataListItemEventArgs e)
{
    if (User.Identity.IsAuthenticated)
    {
        // Get LoginView for access to ImageButton on it.
        var loginView = e.Item.FindControl("LoginView1");

        ImageButton btnFav = (ImageButton)loginView.FindControl("btnFavourite");
        HiddenField hf = (HiddenField)loginView.FindControl("FieldPhoneId");

        List<int> listFav = (List<int>)Session["Fav"];

        if (listFav.Contains(int.Parse(hf.Value)))
            btnFav.ImageUrl = "~/images/favs.gif";
    }
}

当我登录并使用AsyncPostBackTrigger时,我无法访问这些控件:btnFavhf. 注意它们在里面LoginView

谢谢。

4

1 回答 1

0

我从这个站点解决了我的问题: 在此处输入链接描述

 protected void Page_Load(object sender, EventArgs e)
{
    //http://www.aspdotnetfaq.com/Faq/how-to-determine-whether-an-asynchronous-partial-postback-has-occurred-on-page.aspx

    // get a reference to ScriptManager and check if we have a partial postback

    if (ScriptManager.GetCurrent(this.Page).IsInAsyncPostBack)
    {

        // partial (asynchronous) postback occured

        // insert Ajax custom logic here  

    }
    // enable property is re-creating page controls
    else if (!Page.IsPostBack || enable)
    {
        //enable = false;
        if (Page.Request["Page"] != null || Page.Request["Page"] != "")
        {...

] 感谢本网站。

于 2013-07-23T12:28:45.793 回答