Jump to content

Looks like ASP.NET AJAX is a mess?


davej

Recommended Posts

Microsoft AJAX Library? ScriptManager Control? ScriptManagerProxy Control? --edit Eh, actually the basic implementation is trivial. Drag and drop a ScriptManager and UpdatePanel from the Ajax part of the tool menu into a form which show up as;

<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager><asp:UpdatePanel ID="UpdatePanel1" runat="server"><ContentTemplate>   </ContentTemplate></asp:UpdatePanel>

Then you put the control which triggers the Ajax transfer and the output location for the Ajax inside this structure and it seems to work. I don't quite understand it but it seems to be working. The ContentTemplate seems to make it happy, but I don't actually know what it does.

Edited by davej
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...