asp.net MVC @Url.Content @href 区别!
据说是:Href()不能传入参数为http://www.xxx.com这样的路径,否则会报错。而Url.Content()可以传入而不报错误。
我想问问还有木有其他的区别!
@Html.Action("ModuleRoleList", "SysModelRole", new { listPage = (ViewBag.SysModuleList as List<DL.Admin.Models.ModuleRole>), pid = 0, layer = 0 })
这种方式
除了Url.Content与应用程序的虚拟目录一起使用,两者差不多。 @Href
是System.Web.WebPages库的,@Url.Content
是MVC的