2014-03-05 65 views
0

我有一個JavaScript的控制器如何禁止查看

public ActionResult Index() 
    { 
     return View(); 
    } 
    [HttpGet] 
    public ActionResult _Nasljede() 
    { 
     return PartialView("Nasljede"); 
    } 

和索引操作負荷_Nasljede動作,所以當我把在瀏覽器地址欄中 ..domain /控制器#nasljede我的頁面是否正常。(PartialView _Nasljede是在索引視圖中加載)。

我該如何禁止..域/控制器? 這是甚至可能在mvc?

如果您有任何問題,請詢問。我不知道我是否正確解釋我的問題。

+0

可能的重複答案在http://stackoverflow.com/a/15473121/44853 –

+0

這是行不通的。但thx的答案。 –

+0

我的情況很不尋常,因爲我只想看到一個視圖,只要他有局部視圖(#something) –

回答

0

我認爲這是不可能與mvc。我用jQuery解決了我的問題。

if (!window.location.hash) { 
    window.location.replace("somewhere"); 
}