Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1215
WebDataMenu in "ASP.NET v4.0" Application Pool
posted

I'm experiencing non-responsive menu clicks while running on IIS7 in the "ASP.NET v4.0" Application Pool.  Everything works fine in the "ASP.NET v4.0 Classic" Application Pool.

Here's what I experience:

Clicking WebDataMenu items soon causes my app to become unresponsive.  Once it "locks up" you can no longer navigate to another page in the app.  The wait cursor spins for several seconds, but the app refuses to go to another url.  You can't even type a new page name into the address bar -- same results: wait cursor and then nothing.  IIS evidently refuses to serve up new pages.  The app is effectively dead.

This behavior only occurs after clicking menu items.  It does NOT occur when clicking around on other links and buttons.  And it only happens in the "ASP.NET v4.0" app pool.  Everything works great in the "ASP.NET v4.0 Classic" app pool.  It is also random, because you cannot predict which menu item will trigger the issue, and you cannot predict how many menu clicks it will take.  But usually about 3 - 10 clicks is all it takes.  Then the app becomes unresponsive.

I do not get any first chance exceptions in the debugger.  The output window is clean.

I cannot reproduce this in a test app.  It evidently only happens in my app, which is loaded with nothing but IG and stock ASP.NET controls.

Have you seen anything like this before?

My aspx code:

<ig:WebDataMenu ID="WebDataMenu1" runat="server"
   
onitemclick="WebDataMenu1_ItemClick" BackColor="Transparent"
    Font-Names="Verdana" Font-Size="8">
    <GroupSettings Orientation="Horizontal" />
</ig:WebDataMenu>

 

Parents Reply Children
No Data