我有一個小問題,我重定向在ASP.NET(C#)的Response.Redirect在URL中的子目錄
我剛買了一臺域看起來像這樣:http://www.example.com/subdirectory
所以,當我打開我的asp.net開始頁面,網址如下:http://www.example.com/subdirectory/Startpage/Startpage.aspx
這是我的重定向代碼背後:
Response.Redirect("~/UserSite/UserSite.aspx")
現在的問題是,當我點擊Ø n表示按鈕,我重定向到
http://www.example.com/UserSite/UserSite.aspx
,而不是
http://www.example.com/subdirectory/UserSite/UserSite.aspx
我怎樣才能讓我的網頁在網址子目錄?
如果有人能幫助我,那會很好。 謝謝。
使用這樣的:Response.Redirect的(「〜/子目錄/ UserSite/UserSite的.aspx「); –