在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重定向。