Asynchronous and synchronous postback in ASP.NET

后端 未结 4 1020
清歌不尽
清歌不尽 2020-12-10 08:05

What are the differences between asynchronous and synchronous postback?

4条回答
  •  不思量自难忘°
    2020-12-10 08:23

    Asynchronous postback are generally used to provide enhanced browser functionality with the help of javascript. for example , filling designations in an department based on a department selected in a dropdownlist without causing a full page refresh.

    use can use ASP Update panels- http://www.asp.net/Ajax/Documentation/Live/overview/UpdatePanelOverview.aspx

    XMLHTTP REQUEST to call asp.net pages http://www.w3schools.com/XML/xml_http.asp

    ASP>NET AJAX and web services http://www.asp.net/Ajax/Documentation/Live/tutorials/ExposingWebServicesToAJAXTutorial.aspx

提交回复
热议问题