views:

86

answers:

1

Hello.

I'm developing an ASP.NET application with C# and Visual Studio 2008 SP1. I'm using WebForms.

I have an ASPX page with two UpdatePanels, one on the left that holds a TreeView and other on the right where I load dynamically user controls.

On the left panel I also have buttons to load user controls on the right. I have a ModalPopupExtender in a button that show I div with radiobuttons to select a type. When I choose an option and click ok it do a postback to load dynamically a user control but instead of dissapear these modal panel it appers on the bottom left corner of the page.

What's happening? I think it is about dynamic load.

A: 

It is a bug on AjaxControlToolkit. I've decided to use the following answer: http://stackoverflow.com/questions/2325431/jquery-uis-dialog-doesnt-work-on-asp-net

VansFannel