Common_MapTips_VBNet\MultipleCustomLayouts.aspx.vb
' 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. ' Imports Microsoft.VisualBasic Imports System Imports System.Collections.Generic Imports System.Web Imports System.Web.UI Imports System.Web.UI.WebControls Partial Public Class _Default Inherits System.Web.UI.Page ' Expose the client tier AJAX IDs of the graphics layers created by the MapTips controls. ' Used in JavaScript to retrieve the layers on the client. Public ReadOnly Property MapTipsLayerName1() As String Get Return MapTips1.GraphicsLayerClientID End Get End Property Public ReadOnly Property MapTipsLayerName2() As String Get Return MapTips2.GraphicsLayerClientID End Get End Property End Class