FineUI/FineUI.Examples/iframe/selectprovince3_child.aspx.cs
三生石上 8e116609c6 v4.2.0
2015-05-19 14:45:47 +08:00

33 lines
994 B
C#

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 = "图片来源:<a href=\"http://www.sbsm.gov.cn/article/zxbs/dtfw/\" target=\"_blank\">http://www.sbsm.gov.cn/article/zxbs/dtfw/</a>";
}
else
{
string eventArgument = GetRequestEventArgument();
if (eventArgument.StartsWith("SelectProvince$"))
{
PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference(eventArgument));
}
}
}
}
}