开发者

Autopostback keeps refreshing site

I have a dropdownlist, and when I set AutoPostBack="true", the page keeps refreshing.

any who knows what might be wrong?

<asp:Repeater ID="repFunctionsToAdd" runat="server" OnItemDataBound="repFunctionsToAdd_ItemDataBound">
 <ItemTemplate>
   <div class="person-section">
     <div class="row">
      <strong>
       <%# Eval("Name") %>
      </strong>
      <a class="btn-question" href="#">question</a>
      <div class="load">
       <img src="../images/load<%# Eval("PreProductionLoad") %>.gif" width="40" height="16" alt="image description" />
       <img src="../images/load<%# Eval("ProductionLoad") %>.gif" width="40" height="16" alt="image description" />
       <img src="../images/load<%# Eval("PostProductionLoad") %>.gif" width="40" height="16" alt="image description" />
      </div>
     </div>
     <div class="row">
      <div class="btn01 btn-tilfoj">
       <ctrl:Hyperlink ID="hlAddFunction" runat="server" Icon="Plus" Text="Tilføj" />
      </div>
      <label for="select2">
       Tilføj til:</label>
      <asp:DropDownList ID="ddlUsers" runat="server" Width="190" OnSelectedIndexChanged="ddlUsers_Sic" AutoPostBack="true" />                                                      
   </div>开发者_高级运维                                                
  </div>
 </ItemTemplate>
</Repeater>


The DropDownList shouldn't be inside the ItemTemplate, as this means it will get "repeated" for each item.

Because the DropDownList has AutoPostBack to true, and one static event handler, every time you select an item, ALL of the items in the dropdown will fire the autopostback event.

So if you have 100 items in your repeater, the AutoPostBack will get fired 100 times for each selected index change event.

Make sense?

Move the DropDownList to outside the repeater, and it should solve your problem.

However, if you MUST have it inside the repeater (if want each item to have specific behaviour), you'll need to wire up the SelectedIndexChanged event on the ItemCreated event:

protected void repFunctionsToAdd_ItemCreated(object sender, RepeaterItemEventArgs e)
{
   DropDownList dll = e.Item.FindControl("ddlUsers");
   ddl.SelectedIndexChange += ddlUsers_Sic;
}


If you are running an ASP.NET 2.0+ configuration, you could put your DropDownList in an UpdatePanel to prevent full page post-back. This would then only re-render that segment of the page using ASP.NET AJAX.

http://msdn.microsoft.com/en-us/library/bb386454.aspx

Alternatively you could write a javascript script to run a WebMethod which could handle any server-side changes which need to occur.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜