白天有雨

此处应该有掌声

导航

2006年9月18日 #

取得访问者的真实ip地址

摘要: //可绕过代理直接取得机器的真实ip,超级匿名代理除外public static string IPAddress { get { string result = String.Empty; result = HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"]; if(result!=null&&r... 阅读全文

posted @ 2006-09-18 16:39 卓如 阅读(861) 评论(2) 推荐(0) 编辑

取得浏览器信息

摘要: 在msdn上找到的,贴出来记录一下。HttpBrowserCapabilities bc = Request.Browser;Response.Write("<p>Browser Capabilities:</p>");Response.Write("Type = " + bc.Type + "<br>");Response.Write("Name = " + ... 阅读全文

posted @ 2006-09-18 16:36 卓如 阅读(389) 评论(0) 推荐(0) 编辑

asp.net 下载文件源代码

摘要: 增加命名空间:using System.Net; using System.IO; /// <summary>/// 下载文件/// </summary>/// <param name="URL">要下载文件网址</param>public void downloadfile(string URL){WebClient client=new WebC... 阅读全文

posted @ 2006-09-18 16:28 卓如 阅读(5362) 评论(7) 推荐(0) 编辑