在C#中,您可以使用System.Web.HttpContext.Current.Request.Url
属性来获取当前页面的URL。以下是一个简单的示例:
using System;
using System.Web;
public class Example
{
public static void Main()
{
string currentUrl = HttpContext.Current.Request.Url.ToString();
Console.WriteLine("当前页面的URL是:" + currentUrl);
}
}
这段代码将输出当前页面的URL。请注意,这个代码示例仅适用于ASP.NET环境。如果您正在使用其他类型的C#应用程序,可能需要使用不同的方法来获取当前页面的URL。
领取专属 10元无门槛券
手把手带您无忧上云