本文实例讲述了asp.net模板引擎Razor调用外部方法用法。分享给大家供大家参考。具体如下:
首先使用Razor的步骤:读取cshtml、解析cshtml同时指定cacheName。
而这个步骤是重复的,为了遵循DRY原则,将这段代码封装为一个RazorHelper()方法
public class RazorHelper { public static string ParseRazor(HttpContext context, string csHtmlVirtualPath, object model) { string fullPath = context.Server.MapPath(csHtmlVirtualPath); string cshtml = File.ReadAllText(fullPath); string cacheName = fullPath + File.GetLastWriteTime(fullPath); string html = Razor.Parse(cshtml,model,cacheName); return html; } }
如何在cshtml中用Razor调用外部方法
1. 首先在cshtml文件引用test1和test2所在类的命名空间
@using WebTest1.RazorDemo;<!--test1和test2所在类的命名空间--> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></title> </head> <body> @RazorTest.test1()<br /> @RazorTest.test2() </body> </html>
2. 在一般处理程序中调用RazorHelper.ParseRazor(),将读取到的cshtml文件返回给客户
public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/html"; string html = RazorHelper.ParseRazor(context, @"~/Razordemo/Razor2.cshtml", null); context.Response.Write(html); }
为什么要在cshtml文件中调用方法呢?
先看一个繁琐的,在cshtml中插入checkbox的处理
1. 一般处理程序
bool gender = true; string html = RazorHelper.ParseRazor(context, @"~/Razordemo/Razor2.cshtml", new { Gender = gender });
2. cshtml文件中处理checkbox的checked状态
<input type="checkbox" @(Model.Gender"checked":"") />
<!--加括号改变优先级,否则编译器会将点Model后面的表达式当字符串处理-->
是不是很乱?处女座不能忍。
我们知道方法可以封装一些重复代码,调用方法让cshtml页面更简洁。
举个例子:
要在cshtml页面插入一个checkbox。
1. 首先封装一个CheckBox()方法
public static RawString CheckBox(string name, string id, bool isChecked) { StringBuilder sb = new StringBuilder(); sb.Append("<input type='checkbox' id='").Append(id).Append("' ").Append("name='").Append(name).Append("' "); if (isChecked) { sb.Append("checked"); } sb.Append("/>"); return new RawString(sb.ToString()); }
2. 在一般处理程序中读取和解析cshtml文件
string html = RazorHelper.ParseRazor(context, @"~/Razordemo/Razor2.cshtml", null); context.Response.Write(html);
3. 在cshtml文件中调用CheckBox()方法,将checkbox插入cshtml
@using WebTest1.RazorDemo;<!--test1和test2所在类的命名空间--> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></title> </head> <body> @RazorTest.CheckBox("apple","apple",true) </body> </html>
希望本文所述对大家的asp.net程序设计有所帮助。
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。
更新日志
- 小骆驼-《草原狼2(蓝光CD)》[原抓WAV+CUE]
- 群星《欢迎来到我身边 电影原声专辑》[320K/MP3][105.02MB]
- 群星《欢迎来到我身边 电影原声专辑》[FLAC/分轨][480.9MB]
- 雷婷《梦里蓝天HQⅡ》 2023头版限量编号低速原抓[WAV+CUE][463M]
- 群星《2024好听新歌42》AI调整音效【WAV分轨】
- 王思雨-《思念陪着鸿雁飞》WAV
- 王思雨《喜马拉雅HQ》头版限量编号[WAV+CUE]
- 李健《无时无刻》[WAV+CUE][590M]
- 陈奕迅《酝酿》[WAV分轨][502M]
- 卓依婷《化蝶》2CD[WAV+CUE][1.1G]
- 群星《吉他王(黑胶CD)》[WAV+CUE]
- 齐秦《穿乐(穿越)》[WAV+CUE]
- 发烧珍品《数位CD音响测试-动向效果(九)》【WAV+CUE】
- 邝美云《邝美云精装歌集》[DSF][1.6G]
- 吕方《爱一回伤一回》[WAV+CUE][454M]