我正在尝试使用 Microsoft Web Helpers,以便可以使用该@Video
帮助程序。我的代码如下所示:
@using Microsoft.Web.Helpers;
@{
Layout = "~/_SiteLayout.cshtml";
Page.Title = "Home";
}
@Video.Flash(path: "my_flash_video.swf", width: "400", height: "600",
play: true, loop: true, menu: false, bgColor: "red",
quality: "medium", scale: "exactfit", windowMode: "transparent")
每次我运行这个我都会收到以下错误:
找不到方法:'System.Web.WebPages.HelperResult Microsoft.Web.Helpers.Video.Flash(System.String, System.String, System.String, Boolean, Boolean, Boolean, System.String, System.String, System.字符串,System.String,System.String,System.String,System.Object,System.Object,System.String)'。
任何人都可以对此有所了解吗?