求助C#获取当前IE地址栏的url
发布网友
发布时间:2022-04-28 20:19
我来回答
共5个回答
热心网友
时间:2022-06-23 01:49
protected string GetUrl()
{
//取本页URL地址
//2004-3-3 wskyo
string strTemp="";
if(Request.ServerVariables["HTTPS"] == "off")
{
strTemp = "http://";
}
else
{
strTemp = "https://";
}
strTemp = strTemp + Request.ServerVariables["SERVER_NAME"];
if(Request.ServerVariables["SERVER_PORT"] != "80")
{
strTemp = strTemp + ":" + Request.ServerVariables["SERVER_PORT"];
}
strTemp = strTemp + Request.ServerVariables["URL"];
if(Request.QueryString != null)
{
strTemp = strTemp + "?" + Request.QueryString;
}
return strTemp;
}
string myurl = GetUrl();
参考资料:http://www.blueidea.com/bbs/NewsDetail.asp?id=1390260
热心网友
时间:2022-06-23 01:50
www.baidu.com.cn 网页搜索
热心网友
时间:2022-06-23 01:50
这个肯定要通过API来处理的。关键要抓句炳,很难实现。
或者用抓图,然后OCR翻译
热心网友
时间:2022-06-23 01:51
自己去搜索一下嘛。很容易找到,ASP.NET?
热心网友
时间:2022-06-23 01:51
C#不熟...JS的话就window.location