如何获取URL当前页面的URL

如何获取URL当前页面的URL

本文介绍了如何获取URL当前页面的URL?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何获取网址当前页面的网址? (IE + FIREFOX + CHROME)它是什么?

每个人都告诉我们使用followin gcode:

How can I get the URL of the current page of the URL? (IE + FIREFOX + CHROME) what ever it is?
Every one tellin gme to use followin gcode:

using System;
using System.Web;

public class Program
{
    public static void Main()
    {
        Uri MyUrl = HttpContext.Current.Request.Url.AbsoluteUri;
        Console.ReadKey();
    }
}





但是在给出错误HttpContext在当前比赛中并不存在。我正在使用控制台应用程序以下链接与我的问题相同:

[ ^ ]



任何人都可以帮助我吗?

谢谢



But is giving error "HttpContext" doesn''t exist in current contest. I am using console application. Following link is same as my problem:
http://stackoverflow.com/questions/593709/how-to-get-the-url-of-the-current-page-in-c-sharp[^]

Can any one help me?
Thanks

推荐答案


这篇关于如何获取URL当前页面的URL?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-26 21:45