asp.net에서 iframe에서 정보를 팝업하고 점프 문제를 실행합니다

1383 단어
 
  
///
/// iframe ,
///

///
///
public static void ResponseShowMsg(string msg, string targetPageName)
{
string str = " alert('{0}'); window.parent.frames[\"sysMain\"].location.href = '{1}'; ";
string Urls = HttpContext.Current.Request.Url.OriginalString;
if (Urls.LastIndexOf('?') > 0)
{
Urls = Urls.Substring(0, Urls.LastIndexOf('?')).Replace(HttpContext.Current.Request.Url.Segments[HttpContext.Current.Request.Url.Segments.Length - 1], targetPageName);
}
else
{
Urls = Urls.Replace(HttpContext.Current.Request.Url.Segments[HttpContext.Current.Request.Url.Segments.Length - 1], targetPageName);
}
str = string.Format(str, msg, Urls);
HttpContext.Current.Response.Write(str);
}

페이지 호출 cs 파일
 
  
protected void btnSave_Click(object sender, EventArgs e)
{
if (bll.RoleAdd(model, tempMs))
{
CmvspCommon.MessageBox.ResponseShowMsg( " !", "add.aspx");
}
else {
CmvspCommon.MessageBox.Show(this, " !");
}
}

좋은 웹페이지 즐겨찾기