一个简单的Demo

源代码在线查看: message.cs

软件大小: 2959 K
上传用户: lvuxinwu
关键词: Demo
下载地址: 免注册下载 普通下载 VIP

相关代码

				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')");
				        }
				    }
				}
							

相关资源