我想在点击指向该页面的链接后加载我的页面时显示加载图像。我的页面已附加到母版页。
我在页面的preinit事件上显示了加载图像,并在页面加载结束时隐藏了它,但是它不显示正常页面和重页面,例如显示Google Maps等的图像,图像显示只需几分之一秒,然后隐藏。
protected void Page_PreInit(object sender, EventArgs e)
{
try
{
ClientScript.RegisterStartupScript(this.GetType(),"Popupshow", "showMessage();", true);
}
catch (Exception ex)
{
throw ex;
}
}
protected void Page_Load(object sender, EventArgs e)
{
ClientScript.RegisterStartupScript(this.GetType(),"Popuphide", "hideMessage();", true);
}
我想从我点击该页面的链接直到它完全加载的那一刻开始显示加载图像。