public static void MessageBox(string msg)
{
           HttpContext .Current .Response .Write ("<script>alert(\""+ msg+"\")</script>");
}
}
}
   这个messagebox为什么总是在新的一页弹出而不是在本页出现  ,要想让它在本页出现该怎么办?