I have a small doubt which I could not google the answer, So thought I could find the answer here. Why should we add
<asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager>
control in order to use
<asp:UpdatePanel runat="server"> in out aspx page.
hope some one can give the answer.
The ScriptManager control is central to Ajax functionality in ASP.NET. The control manages all ASP.NET Ajax resources on a page. This includes downloading Microsoft Ajax Library scripts to the browser and coordinating partial-page updates that are enabled by using UpdatePanel controls.
On the ASP.NET page, inside the form tags.
A page can have only one ScriptManager control.
No. Only one instance of a ScriptManager can be added to the page.
ScriptManager control registers the script for the Microsoft AJAX Library with the page. This enables client script support features such as partial-page rendering and Web-service calls.
You must use a ScriptManager control on a page to enable the following features of ASP.NET AJAX:
1. Client-script functionality of the Microsoft AJAX Library, and any custom script that you want to send to the browser.
protected void Button1_Click(object sender, EventArgs e) { Page.ClientScript.RegisterStartupScript( this.GetType(),"myscript","alert('hello world!');"); }
2. Partial-page rendering, which enables regions on the page to be independently refreshed without a postback. The ASP.NET AJAX UpdatePanel, UpdateProgress, and Timer controls require a ScriptManager control to support partial-page rendering.
3. JavaScript proxy classes for Web services, which enable you to use client script to access Web services by exposing Web services as strongly typed objects.
[WebMethod] public int Add(int a, int b) { return a + b; } function CallAdd() { // method will return immediately // processing done asynchronously WebService.Add(0,6, OnMethodSucceeded, OnMethodFailed); }
4. JavaScript classes to access ASP.NET authentication and profile application services.
Sys.Services.AuthenticationService.login Sys.Services.AuthenticationService.logout <script type="text/javascript"> function MyMethod(username, password) { Sys.Services.AuthenticationService.login(username, password,false,null,null,null,null,"User Context"); } </script>
See more at http://msdn.microsoft.com/en-us/magazine/cc163354.aspx
Besides above answers, I would like to add some points for the reason behind using ScriptManager
control. The controls that you mentioned UpdatePanel
and ScriptManager
are used for the ASP.NET AJAX Enabled sites.
The ScriptManager
control serves as the bridge between the client page and the server. As it is like a bridge, you've to use this control if any of the other AJAX controls needs to be added. It manages script resources (the JavaScript files used at the client), takes care of partial-page updates as shown earlier, and handles interaction with your web site for things like web services and the ASP.NET application services such as membership, roles, and profile. Whenever one of the controls within the UpdatePanel causes a postback to the server, only the content within that UpdatePanel is refreshed.
If you analyze the data that gets sent from the server to the browser (using a network analysis tool like Fiddler or Wireshark), you would see that only a limited amount of data gets sent to the client.
You usually place the
ScriptManager
control directly in a content page if you think you need Ajax capabilities on only a handful of pages.If you’re going to use Ajax functionality in many of your ASPX pages, you can place the
ScriptManager
in the master page, so it’s available in all pages that are based on this master.
You can only have one ScriptManager
per page (i.e. only one bridge, if there happens two bridges then the page request/response may get confused from where to go!? :D), so if you add one to a master page, you can’t add another one to a content page. In order to access a ScriptManager
control that is defined in a master page from a content page, you can use the ScriptManagerProxy
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With