我想从javascript调用
window.open("< full URL to my '/controller/action/id' >", "My test page")
在剃刀中,但我不知道该怎么做。
任何人都可以帮助我。
答案 0 :(得分:1)
您可以在Action
上使用UrlHelper
方法。
您可以使用UrlHelper
属性访问视图中的Url
:
<script type="text/javascript">
window.open("@(Url.Action("Index", "Home", new { id= 1}))", "My test page")
</script>