大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
建议你使用注册表的API进行修改
我们提供的服务有:成都网站设计、网站建设、微信公众号开发、网站优化、网站认证、徐汇ssl等。为成百上千家企事业单位解决了网站和推广的问题。提供周到的售前咨询和贴心的售后服务,是有科学管理、有技术的徐汇网站制作公司
封装两个NET函数给你
private string GetReg(string RegPath) 取得注册表项内容
{
string str="";
RegistryKey hkml = Registry.LocalMachine;
RegistryKey software = hkml.OpenSubKey("SOFTWARE",true);
RegistryKey aimdir = software.OpenSubKey("krabs",true);
if (aimdir != null)
{
if (aimdir.GetValue(RegPath) != null)
str = aimdir.GetValue(RegPath).ToString();
if (str != null)
return str;
return null;
}
return null;
}
private bool SetReg(string RegPath,string Data) //设置注册表内容
{
RegistryKey reg = Registry.LocalMachine;
RegistryKey software = reg.OpenSubKey("SOFTWARE", true);
RegistryKey aimdir1 = software.CreateSubKey("krabs");
if (aimdir1 == null)
return false;
aimdir1.SetValue(RegPath, Data);
return true;
}
response.write "br全路径:http://"Request.ServerVariables("HTTP_HOST")Request.ServerVariables("SCRIPT_NAME")
response.write "br来原页:"Request.ServerVariables("HTTP_REFERER")
response.write "br主机名:"Request.ServerVariables("SERVER_NAME")
response.write "br绝对路:"Request.ServerVariables("SCRIPT_NAME")
response.write "br文件夹:"left("http://"Request.ServerVariables("HTTP_HOST")Request.ServerVariables("SCRIPT_NAME"),InStrRev("http://"Request.ServerVariables("HTTP_HOST")Request.ServerVariables("SCRIPT_NAME"),"/"))
如下两种方法,
1,
采用默认的浏览器打开FTP站点,不需要知道IE在什么地方,建议采用。
Shell("rundll32
url.dll
FileProtocolHandler
")
2,采用IE打开,只要更改为你的ie路径就可以了。不建议使用这个方法。
Shell("C:\Program
Files\Internet
Explorer\iexplore.exe
")