相关代码 |
|
using System; using System.Collections.Generic; using System.Text; using System.Web; namespace Surance.Utility { public class Message { public static void Show(string message) { HttpContext.Current.Response.Write("alert('" + message + "')"); } public static void PopUp(string url, string name) { HttpContext.Current.Response.Write("window.open('" + url + "','" + name + "','widht=300,height=420,resizable=1,scrollbars=1')"); } } }
相关资源 |
|