Common Partial postback
Common_PartialPostback_CSharp\RegisterScriptBlockDemo.aspx.cs
// Copyright 2010 ESRI
// 
// All rights reserved under the copyright laws of the United States
// and applicable international laws, treaties, and conventions.
// 
// You may freely redistribute and use this sample code, with or
// without modification, provided you include the original copyright
// notice and use restrictions.
// 
// See the use restrictions.
// 

public partial class RegisterScriptBlockDemo : System.Web.UI.Page
{
    #region ASP.NET Page Life Cycle Event Handlers

    protected void Page_Load(object sender, System.EventArgs eventArgs)
    {
        // Register the Zoom To Point button and Zoom To Menu to issue postbacks asynchronously.  Note that
        // controls registered in this way must implement either INamingContainer, IPostBackDataHandler, or 
        // IPostBackEventHandler
        ScriptManager1.RegisterAsyncPostBackControl(Button1);
        ScriptManager1.RegisterAsyncPostBackControl(Menu1);
    }

    #endregion

    #region ASP.NET WebControl Event Handlers

    // Fires when the Zoom To Point button is clicked
    protected void Button1_Click(object sender, System.EventArgs eventArgs)
    {
        // Get the values from the X and Y textboxes
        double xCenter = double.Parse(TextBoxX.Text);
        double yCenter = double.Parse(TextBoxY.Text);

        // Calculate 1/8 the width of the current map extent
        double adfMapWidthEighth = Map1.Extent.Width / 8;

        // Create an envelope with its center at the coordinates specified in the X and Y textboxes,
        // and with a width one quarter that of the current map extent.
        ESRI.ArcGIS.ADF.Web.Geometry.Envelope adfNewExtentEnvelope =
            new ESRI.ArcGIS.ADF.Web.Geometry.Envelope(xCenter - adfMapWidthEighth,
            yCenter - adfMapWidthEighth, xCenter + adfMapWidthEighth, yCenter + adfMapWidthEighth);

        // Update the map extent to the new envelope
        Map1.Extent = adfNewExtentEnvelope;

        // Construct the JavaScript necessary to perform client-side processing of the callback 
        // results generated from manipulating the map.  Note that we need to modify the escape 
        // sequencing on the default callback results string for the script to execute properly, 
        // hence the call to Replace on the Map's callback results string.
        string jsProcessCallbackResult = string.Format("ESRI.ADF.System.processCallbackResult('{0}');",
            Map1.CallbackResults.ToString().Replace("\\", "\\\\"));
        // Register the call to processCallbackResult as a script on the client.
        System.Web.UI.ScriptManager.RegisterClientScriptBlock(Page, sender.GetType(), "changeextent",
            jsProcessCallbackResult, true);
    }

    // Fires when an item on the Zoom To menu is clicked
    protected void Menu1_MenuItemClick(object sender, System.Web.UI.WebControls.MenuEventArgs menuEventArgs)
    {
        // Declare and initialize variables to store the bounds of the new map extent
        double minX = 0;
        double minY = 0;
        double maxX = 0;
        double maxY = 0;

        // Check the passed-in location and initialize the extent parameters accordingly
        switch (menuEventArgs.Item.Text)
        {
            case "California":
                minX = -128.0;
                minY = 31.0;
                maxX = -111.0;
                maxY = 43.0;
                break;
            case "New York":
                minX = -80.0;
                minY = 40.5;
                maxX = -73.0;
                maxY = 45.5;
                break;
            case "Kansas":
                minX = -103.0;
                minY = 35.0;
                maxX = -93.0;
                maxY = 42.0;
                break;
            default:
                break;
        }
        // Create a Web ADF envelope with the new extent parameters
        ESRI.ArcGIS.ADF.Web.Geometry.Envelope adfNewExtentEnvelope =
            new ESRI.ArcGIS.ADF.Web.Geometry.Envelope(minX, minY, maxX, maxY);

        // Update the map control's extent with the newly created envelope
        Map1.Extent = adfNewExtentEnvelope;

        // Construct the JavaScript necessary to perform client-side processing of the callback 
        // results generated from manipulating the map.  Note that we need to modify the escape 
        // sequencing on the default callback results string for the script to execute properly, 
        // hence the call to Replace on the Map's callback results string.
        string jsProcessCallbackResult = string.Format("ESRI.ADF.System.processCallbackResult('{0}');",
            Map1.CallbackResults.ToString().Replace("\\", "\\\\"));
        // Register the call to processCallbackResult as a script on the client.
        System.Web.UI.ScriptManager.RegisterClientScriptBlock(Page, sender.GetType(), "changeextent",
            jsProcessCallbackResult, true);
    }

    #endregion

    #region Web ADF Control Event Handlers

    // Fires whenever the map's extent changes
    protected void Map1_ExtentChanged(object sender, ESRI.ArcGIS.ADF.Web.UI.WebControls.ExtentEventArgs extentEventArgs)
    {
        // New extent is the explicit envelope the Map extent will be set to.  Note that the aspect ratio of the map 
        // extent has been adjusted to account for pixel image size / extent size discrepancies. 
        ESRI.ArcGIS.ADF.Web.Geometry.Envelope adfEnvelope = extentEventArgs.NewExtent;

        // Update extent boundary label values.  Note that we have to update the values on both the server (via
        // Label.Text) and the client (via CreateSetInnerContent callback results).  The update on the server
        // makes it so that the value persists across postbacks that don't fire the ExtentChanged event.  The
        // update on the client makes it so that the change is actually shown on the client.

        // Set label text on the server
        LabelN.Text = adfEnvelope.YMax.ToString("N");
        LabelE.Text = adfEnvelope.XMax.ToString("N");
        LabelS.Text = adfEnvelope.YMin.ToString("N");
        LabelW.Text = adfEnvelope.XMin.ToString("N");

        // Update label text on the client via the map control's callback results.  Since the event was fired by the
        // map control, the map's callback results - including any we choose to add - are processed on the client without
        // any further action (such as registering a script block or data item).
        ESRI.ArcGIS.ADF.Web.UI.WebControls.CallbackResult updateLabelCallbackResult =
            ESRI.ArcGIS.ADF.Web.UI.WebControls.CallbackResult.CreateSetInnerContent(LabelN, adfEnvelope.YMax.ToString("N"));
        Map1.CallbackResults.Add(updateLabelCallbackResult);
        updateLabelCallbackResult =
            ESRI.ArcGIS.ADF.Web.UI.WebControls.CallbackResult.CreateSetInnerContent(LabelE, adfEnvelope.XMax.ToString("N"));
        Map1.CallbackResults.Add(updateLabelCallbackResult);
        updateLabelCallbackResult =
            ESRI.ArcGIS.ADF.Web.UI.WebControls.CallbackResult.CreateSetInnerContent(LabelS, adfEnvelope.YMin.ToString("N"));
        Map1.CallbackResults.Add(updateLabelCallbackResult);
        updateLabelCallbackResult =
            ESRI.ArcGIS.ADF.Web.UI.WebControls.CallbackResult.CreateSetInnerContent(LabelW, adfEnvelope.XMin.ToString("N"));
        Map1.CallbackResults.Add(updateLabelCallbackResult);
    }

    #endregion
}