Set up http://services.arcgisonline.com/v92, I3_Imagery_Prime_World_2D as the primary map resource. As now the initial extent of the map will be the extent of the internet service, add the following lines of code to show the map at the local data’s extent initially.Protected Sub Page_PreRenderComplete(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.PreRenderComplete Dim mf As ESRI.ArcGIS.ADF.Web.DataSources.ArcGISServer.MapFunctionality = Map1.GetFunctionality(0) Map1.Extent = ESRI.ArcGIS.ADF.Web.DataSources.ArcGISServer.Converter.ToAdfEnvelope(mf.MapDescription.MapArea.Extent) End Sub