2015-05-19 102 views
-6

我想在用戶點擊某個按鈕時在我的c#應用程序中重定向到另一個網站的html頁面。我寫了這個重定向到其他網站c的html頁面#

Response.Redirect("http://www.fashionunic.com/shop/wholesale-m04-dozen-chevron-laced-front-top-medium.html") 

但還沒有制定它是扔的路徑不是

我打電話頁面加載下面的方法

Response.Redirect("http://www.fashionunic.com/shop/wholesale-m04-dozen-chevron-laced-front-top-medium.html") 

有效的虛擬路徑
public void Application_BeginRequest() 
{ 
var MyUri = Context.Request.Url; 
if(MyUri.Contains("shop/wholesale") { 
      var String = MyUri.ToString();    
      Context.RewritePath("http://www.fashionunic.com/shop/wholesale-m04-dozen-chevron-laced-front-top-medium.html"); 
} 
} 

例外:

子請求的路徑無效' http:/www.fashionunic.com/shop/wholesale-m04-dozen-chevron-laced-front-top-medium.html'。 預計有虛擬路徑。

+4

「這還沒有工作」 ...你把整個異常的細節,以及代碼駐留的方法? –

+1

*它沒有工作*沒有幫助任何人..讀你的問題,並問問自己,你是否能夠回答它,如果有人問你完全相同的問題 – Izzy

+0

對於初學者來說,你想要一個虛擬路徑嗎?你是否從同一目錄訪問文件? – Mothermole1

回答

相關問題