模态对话框中下载的问题:Modialdialog页面中加了一个,iframe 对话框后,点击按扭后不刷新,这是为什么?<base target="download" /> //这是加在head之间的,这里的download就是下面的download<iframe id="download" name="download" height="0px" width="0px">这里面没有东西</iframe>//这是加在form里面的,我点击button后,页面数据不刷新,这是为什么呢急    HttpContext.Current.Response.Buffer = true;                HttpContext.Current.Response.ExpiresAbsolute = System.DateTime.Now.AddSeconds(-1);                HttpContext.Current.Response.Expires = 0;                HttpContext.Current.Response.CacheControl = "no-cache";                HttpContext.Current.Response.AddHeader("Pragma", "No-Cache");这个我加了在pageload里面。