I want to load an asp.net form into atonteh asp.net form, or into a .html file, so i can change the html(in this example) page contents dynamicaly.But it doesnt seem to work when i press the button nothing happens.I am using Mozila Firefox but there are no errors in the console.here is my code:the HTML page Ajax:\[code\]<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script><script type = "text/javascript"> $("#demo").live("click", function () { $.ajax({ type: "POST", url: "WebForm1.aspx", data: "", contentType: "application/json; charset=utf-8", dataType: "json", success: function (r) { $("#Content").append(r.d); } }); });</script>\[/code\]and a siple asp.net form:\[code\]<form id="form2" runat="server"><asp:ScriptManager runat="server"></asp:ScriptManager><asp:UpdatePanel runat="server"><ContentTemplate><div> <asp:Label ID="Label1" runat="server" Text="shgfdhndfnfdndnf"></asp:Label> <asp:Button ID="Button1" runat="server" Text="Button" /></div></ContentTemplate></asp:UpdatePanel></form>\[/code\]can anyone tell me where my code is wrong or how its done, I want to load a whole asp form into an html or an asp.net form(witch is note very good since i can have only one form in syntax) ot how to load a specific div from the asp.net for into the html page.