摘要: using System;using System.Collections.Generic;using System.Text;using System.Text.RegularExpressions;using System.Net;using System.Management;using System.Runtime.InteropServices;namespace JM.Common.Net{ /// /// 基础网络类 /// public class BaseNet { /// /// 获取本地IP地址 ... 阅读全文
posted @ 2013-07-29 16:18 jeffrey77 阅读(262) 评论(0) 推荐(0) 编辑
摘要: public class MessageBox { /// /// 自定义弹出窗口内容,不跳转 /// /// /// public static void Show(System.Web.UI.Page page, string msg) { page.ClientScript.RegisterStartupScript(page.GetType(), "ShowMessage", "alert('" + msg + "');", true); ... 阅读全文
posted @ 2013-07-29 14:23 jeffrey77 阅读(234) 评论(0) 推荐(0) 编辑