博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2006年3月28日

摘要: ====以下是一个取得IP和操作系统以及浏览器的例子========= private string getIp() {/*穿过代理服务器取远程用户真实IP地址:*/ if(Request.ServerVariables["HTTP_VIA"]!=null) return Request.ServerVariables["HTTP_X_FORWARDED_FOR"].ToString(); else return Request.ServerVariables["REMOTE_ADDR"].ToString(); } Label2.Text =getIp(); HttPBrowserCapabilities bc = new HttpBrowserCapabilities(); bc = Request.Browser; string xitong ="你的操作系统为"; Label3.Text=xitong+bc.Platform + " 浏览器类型:" + bc.Type; 阅读全文

posted @ 2006-03-28 09:44 微软技术爱好者 阅读(275) 评论(0) 推荐(0) 编辑

摘要: 首先创建一张表(要求ID自动编号):create table redheadedfile(id int identity(1,1),filenames nvarchar(20),senduser nvarchar(20),primary key(id))然后我们写入50万条记录:declare @i intset @i=1while @i WebForm8 ... 阅读全文

posted @ 2006-03-28 09:43 微软技术爱好者 阅读(953) 评论(2) 推荐(0) 编辑