当前位置: 移动技术网 > IT编程>开发语言>.net > Razor模板引擎简单介绍

Razor模板引擎简单介绍

2017年12月08日  | 移动技术网IT编程  | 我要评论
一.工具下载: 程序集下载地址:链接: http://pan.baidu.com/s/1hsgjv5y 密码: pfja 适用于visual studio2015程序集

一.工具下载:

程序集下载地址:链接: 密码: pfja

适用于visual studio2015程序集下载地址:链接: 密码: 4v7h

如果在使用vs2015等更高版本的时候出现“file not found exception cannot load system.web.razor.dll version=2.0.0”这样的错误,请换用下面附件中的程序集把旧的razoreginee.dll删掉,然后把 razorengine.net4.0.dll和system.web.razor.net4.0.dll添加到项目引用中。 

二.核心代码代码封装:

public static string parserazor(httpcontext context,
   string cshtmlvirtualpath, object model = null)
  {
   string fullpath = context.server.mappath(cshtmlvirtualpath);//将虚拟路径转换为绝对路径
   string cshtml = file.readalltext(fullpath); //将整个cshtml代码读取出来
   string cachename = fullpath + file.getlastwritetime(fullpath);//返回上次写入指定文件或目录的日期和时间。
   string html = razor.parse(cshtml, model, cachename);
   return html;
  }
  /// <summary>
  /// 直接将读取的cshtml代码转换完后,直接返回给客户端
  /// </summary>
  /// <param name="context"></param>
  /// <param name="cshtmlvirtualpath"></param>
  /// <param name="model"></param>
  public static void outputrazor(httpcontext context,
   string cshtmlvirtualpath, object model = null)
  {
   string html = parserazor(context, cshtmlvirtualpath, model);
   context.response.write(html);    
  }  

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持移动技术网。

如您对本文有疑问或者有任何想说的,请点击进行留言回复,万千网友为您解惑!

相关文章:

验证码:
移动技术网