ASP.NET AJAX: Difference between revisions

Content deleted Content added
Line 34:
==The UpdatePanel Control==
The UpdatePanel is an ASP.NET server control that updates portions of a web page without reloading it. Through a mechanism called asynchronous [[postback]], the HTML for the region of the page wrapped by the control is sent by the server asynchronously through an Ajax request.
//Ali Taghipour from sari
The ASP.NET controls that have been specified as content in an UpdatePanel are able to cause either synchronous (traditional) or asynchronous postbacks, by means of triggers.
 
Line 45 ⟶ 44:
 
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<Ali Taghipour>
<Triggers>
<asp:AsyncPostBackTrigger ControlID="Button1" EventName="Click" />
Line 54 ⟶ 52:
</asp:UpdatePanel>
</source>
// Senior Ali Taghipour Soghondikolaie from sari
 
==Web-services and JSON==