有问题就有答案
Q1:asp.net 网页实现获取服务器端口数据,并显示在文本框内(代码)
string Ins_ID = HttpContext.Request.QueryString["Ins_ID"].ToString();
Q2:asp.net 如何获取客户端端口号
Request.ServerVariables("REMOTE_ADDR") 来取得客户端的IP地址
Q3:asp.net怎么取得客户端真实IP。如果有代理则怎么取第一个非内网地址
using System;using System.Web;namespace KkSys.Web{ public class PageInfor { ///
public static string PageName { get { return HttpContext.Current.Request.Url.AbsolutePath.Substring(HttpContext.Current.Request.Url.AbsolutePath.LastIndexOf('/') + 1); } } ///
public static string UserIP { get { string user_IP = ""; if (HttpContext.Current.Request.ServerVariables["HTTP_VIA"] != null) { user_IP = HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"].ToString(); } else { user_IP = HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"].ToString(); } return user_IP; } } ///
public static string WebName { get { return HttpContext.Current.Request.ServerVariables["SERVER_NAME"]; } } ///
public static string PROTOCOL { get { return HttpContext.Current.Request.ServerVariables["SERVER_PROTOCOL"]; } } ///
public static string PORT { get { return HttpContext.Current.Request.ServerVariables["SERVER_PORT"]; } } ///
public static string GetServerPath { get { return HttpContext.Current.Server.MapPath("~"); } } ///
public static string GetCurrentPath { get { return HttpContext.Current.Server.MapPath(""); } } ///
public static string ServerName { get { return HttpContext.Current.Request.ServerVariables["LOGON_USER"]; } } ///
public static string ServerIp { get { return HttpContext.Current.Request.ServerVariables["LOCAL_ADDR"]; } } }}
Q4:.net一共有那些方法获取客户端的信息?任何信息都可以
ASP.NET获取客户端及服务器的信息ASP.NET获取客户端信息,暂时就这几个,有待添加~~1. 在ASP.NET中专用属性: 获取服务器电脑名:Page.Server.ManchineName 获取用户信息:Page.User 获取客户端电脑名:Page.Request.UserHostName 获取客户端电脑IP:Page.Request.UserHostAddress 2. 在网络编程中的通用方法: 获取当前电脑名:static System.Net.Dns.GetHostName() 根据电脑名取出全部IP地址:static System.Net.Dns.Resolve(电脑名).AddressList 也可根据IP地址取出电脑名:static System.Net.Dns.Resolve(IP地址).HostName 3. 系统环境类的通用属性: 当前电脑名:static System.Environment.MachineName 当前电脑所属网域:static System.Environment.UserDomainName 当前电脑用户:static System.Environment.UserName客户端IP:Page.Request.UserHostAddress;用户信息:Page.User;服务器电脑名称:Page.Server.MachineName;当前用户电脑名称:System.Net.Dns.GetHostName();当前电脑名:System.Environment.MachineName;当前电脑所属网域:System.Environment.UserDomainName;当前电脑用户:System.Environment.UserName;浏览器类型:Request.Browser.Browser;浏览器标识:Request.Browser.Id;浏览器版本号:Request.Browser.Version;浏览器是不是测试版本:Request.Browser.Beta;浏览器的分辨率(像素):Request["width"].ToString() + "*" + Request["height"].ToString();//1280*1024客户端的操作系统:Request.Browser.Platform;是不是win16系统:Request.Browser.Win16;是不是win32系统:Request.Browser.Win32;服务器端的信息:服务器计算机名:"http://" + HttpContext.Current.Request.Url.Host + HttpContext.Current.Request.ApplicationPath;服务器IIS版本: Request.ServerVariables["Server_SoftWare"].ToString();服务器域名:Request.ServerVariables["SERVER_NAME"].ToString();服务器域名:Request.ServerVariables["HTTP_HOST"]服务器端口:Request.ServerVariables["Server_Port"].ToString();服务器IP地址:Request.ServerVariables["LOCAl_ADDR"]服务器脚本超时时间:(Server.ScriptTimeout / 1000).ToString() + "秒";服务器操作系统:Environment.OSVersion.ToString();本文件所在文件夹:Request.PhysicalApplicationPath;服务器IE版本:Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Internet Explorer\Version Vector").Ge
Q5:ASP.NET端口号
NOD32 3.0以上版本的缘故。解决办法: 进入NOD32的高级设置(F5)->Web访问保护->HTTP->Web浏览器,会看到一个程序列表你的devenv.exe应该在其中,去掉前面的勾),确定退出。
Q6:在运行Asp.net工程时,提示端口被占用无法运行程序?请问怎么修改此工程运行的端口?
用的.NET做网站?那你应该在IIS里面建立了虚拟目录吧,那在IIS里面可以改端口啦,一般默认用的是80端口,要是开启迅雷的话,就会被占用啦~~