HtmlHelper使用示例

时间:2022-02-27 22:12:58

在使用Razor时,有时想要在页面内知道对象的完整信息,或服务器的详细信息,可以通过HtmlHelper。

具体使用示例如下:

<div>测试一:
@ServerInfo.GetHtml();    //以html格式显示服务器信息;
@ObjectInfo.Print(ViewBag);  //显示ViewBag的详细信息
}</div>

其它HtmlHelper对象可以通过对象浏览器查看.