/// <summary>
/// 重写page onload
/// </summary>
/// <param name="writer"></param>
protected override void Render(HtmlTextWriter writer)
{
System.IO.StringWriter sw = new System.IO.StringWriter();
HtmlTextWriter htw = new HtmlTextWriter(sw);
base.Render(htw);
writer.Write(sw.ToString().Replace("<body onload=\"", "<body onload=\"document.getElementById('tip').style.height='0px'; "));
}
转载于:https://www.cnblogs.com/tedbyte/archive/2009/08/15/1546613.html