using System; using System.Collections.Generic; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace FineUI.Examples.iframe { public partial class selectprovince3_child : PageBase { protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { // 这种方式也支持 imgChina.Attributes["usemap"] = "#ChinaMap"; labNote.Text = "图片来源:http://www.sbsm.gov.cn/article/zxbs/dtfw/"; } else { string eventArgument = GetRequestEventArgument(); if (eventArgument.StartsWith("SelectProvince$")) { PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference(eventArgument)); } } } } }