阅读量:0
在C#中实现URL重定向可以通过使用Response.Redirect
方法来实现。以下是一个简单的示例:
using System; using System.Web; namespace RedirectExample { class Program { static void Main(string[] args) { // 设置重定向的URL string redirectUrl = "http://www.example.com"; // 执行重定向 HttpContext.Current.Response.Redirect(redirectUrl); } } }
在上面的示例中,我们首先设置了要重定向的URL,然后使用Response.Redirect
方法执行重定向。在Web应用程序中,可以在控制器中使用Redirect
方法来实现URL重定向。