我正在使用MVC4和Jquery。在MVC中打開.htm文件需要幫助
我在通過MVC中的操作方法打開.htm文件時遇到問題。
這裏是我的代碼:
<img src="~/Images/question_frame.png" style="margin-top:3px;height:18px;width:20px;" onclick="window.open('@Url.Action("Help", "Home", new { id = "NMCHelp"})', 'NMCHelp',toolbar=no, scrollbars=yes, resizable=yes, top=50, left=50,width=750, height=600');"/>
我ActionMethod:
[HttpGet]
[Authorize]
public ActionResult Help(){
var result = new FilePathResult("~/help/nmc/enu/Default.htm", "text/html");![enter image description here][1]
return result;
}
我現在面臨的問題,而試圖open.I我得到錯誤,如 '$' 是不確定的。
請讓我知道我可以打開.htm文件通過行動方法
正確格式化 – Ionic