Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
22 views

AsyncPostBackTrigger doesn't find LinkButton

I have this code in my .aspx file <asp:UpdatePanel runat="server" ID="UpdatePanel1" UpdateMode="Conditional"> <ContentTemplate> <asp:PlaceHolder ...
1
vote
1answer
149 views

How to simulate or trigger a AsyncPostBackError in ASP.NET

I have implemented the handling of the AsyncPostBackError. Now I want to test it. How do simulate a AsyncPostBackError event?
1
vote
1answer
897 views

ScriptManager1.AsyncPostBackErrorMessage not showing error message

I've always used the following two bits of code (which use to work) to catch Ajax asyncPostBackErrors. <asp:ScriptManager ID="ScriptManager1" runat="server" ...
0
votes
1answer
25 views

How to determine if error is caused within Async Postback in Application_Error

In Application_Error, we are redirecting to different error pages but we noticed that this also holds true for AsyncPostBackError even when AllowCustomErrorsRedirect = false and have ...
0
votes
1answer
206 views

Duplicate System.Web.UI.AsyncPostBackTrigger Controls keep getting inserted automatically, causing Parser Errors

I have an update panel with a number of [asp:AsyncPostBackTrigger...] controls, and everything was working fine. But now, something keeps inserting duplicate AsyncTriggers, and instead of simply ...
0
votes
1answer
174 views

Runtime error codes on AsyncPostback from AJAX toolkit

I'm interested in the meaning of the runtime error codes come from asp.net ajax like. 110|error|500|d:\ *PATH* \SomeControl.ascx(5): error CS1026: ) expected| Does anybody knows where are can i ...
0
votes
2answers
1k views

How to control ASP.NET ModalPopupExtender after AsyncPostBackError

I have a pretty simple question which I'm sure somebody has come across before. I am using an AJAX ModalPopupExtender to initiate an Ajax request. In the event of an error I want to raise an alert ...