大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
这篇文章主要介绍ASP.NET MVC如何生成静态页面,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!
创新互联为企业级客户提高一站式互联网+设计服务,主要包括网站制作、成都网站制作、App定制开发、小程序开发、宣传片制作、LOGO设计等,帮助客户快速提升营销能力和企业形象,创新互联各部门都有经验丰富的经验,可以确保每一个作品的质量和创作周期,同时每年都有很多新员工加入,为我们带来大量新的创意。1.先付上封装好生成静态页的原代码:
public class Common { #region 获取模板页的Html代码 ////// 获取页面的Html代码 /// /// 模板页面路径 /// 页面编码 ///public static string GetHtml(string url, System.Text.Encoding encoding) { byte[] buf = new WebClient().DownloadData(url); if (encoding != null) { return encoding.GetString(buf); } string html = System.Text.Encoding.UTF8.GetString(buf); encoding = GetEncoding(html); if (encoding == null || encoding == System.Text.Encoding.UTF8) { return html; } return encoding.GetString(buf); } /// /// 获取页面的编码 /// /// Html源码 ///public static System.Text.Encoding GetEncoding(string html) { string pattern = @"(?i)\bcharset=(? [-a-zA-Z_0-9]+)"; string charset = Regex.Match(html, pattern).Groups["charset"].Value; try { return System.Text.Encoding.GetEncoding(charset); } catch (ArgumentException) { return null; } } #endregion #region 用于生成Html静态页 /// /// 创建静态文件 /// /// Html代码 /// 生成路径 ///public static bool CreateFileHtmlByTemp(string result, string createpath) { if (!string.IsNullOrEmpty(result)) { if (string.IsNullOrEmpty(createpath)) { createpath = "/default.html"; } string filepath = createpath.Substring(createpath.LastIndexOf(@"\")); createpath = createpath.Substring(0, createpath.LastIndexOf(@"\")); if (!Directory.Exists(createpath)) { Directory.CreateDirectory(createpath); } createpath = createpath + filepath; try { FileStream fs2 = new FileStream(createpath, FileMode.Create); StreamWriter sw = new StreamWriter(fs2, new System.Text.UTF8Encoding(false));//去除UTF-8 BOM sw.Write(result); sw.Close(); fs2.Close(); fs2.Dispose(); return true; } catch (Exception ex) { throw ex; } } return false; } #endregion #region 调用静态模板,并且传递数据模型实体类 创建Html静态页 /// /// 解析模板生成静态页 /// /// 模板地址 /// 静态页地址 /// 数据模型 ///public static bool CreateStaticPage (string temppath, string path, T t) { try { //获取模板Html string TemplateContent = GetHtml(temppath, System.Text.Encoding.UTF8); //初始化结果 string result = string.Empty; //解析模板生成静态页Html代码 result = Razor.Parse(TemplateContent, t); //创建静态文件 return CreateFileHtmlByTemp(result, path); } catch (Exception e) { throw e; } } #endregion }
2.调用方法(创建一个多线程去执行,效果会更好):
//实例化调用方法 Task tk = new Task(CreateStaticHtml); tk.Start(); //静态调用方法 Task.Factory.StartNew(() => CreateStaticHtml());
3.封装好的静态方法:
////// 创建静态页面 /// public void CreateStaticHtml() { using (BangLiEntities bangLi = new BangLiEntities()) { View_Home view_Home = new View_Home(); view_Home.CommandAdExtendList = Dal.CommandAdDal.Instance(bangLi).GetInit().ToList(); view_Home.NewsList = bangLi.News.OrderByDescending(u => u.AddDateTime).Take(5).ToList(); view_Home.NewsExtendList = Dal.NewsDal.Instance(bangLi).GetInit().OrderByDescending(u => u.AddDateTime).Take(5).ToList(); view_Home.News = Dal.NewsDal.Instance(bangLi).GetInit().Where(u => u.Id == 3).SingleOrDefault(); string TemplateContent = Common.GetHtml(Server.MapPath("/Views/SourceHtml/Home/Index.cshtml"), System.Text.Encoding.UTF8); //初始化结果 string result = string.Empty; //解析模板生成静态页Html代码 result = Razor.Parse(TemplateContent, view_Home); //创建静态文件 Common.CreateFileHtmlByTemp(result, Server.MapPath("/Resource/Manage/Html/Home/Index.html")); } }
4.如首页执行时,可以在执行Action前去执行一个过滤器:
public class MyFirstHomeAttribute:ActionFilterAttribute { public override void OnActionExecuting(ActionExecutingContext filterContext) { var context = filterContext.HttpContext; context.Session["IsStaticHtml"] = false; string path = context.Server.MapPath("/Resource/Manage/Html/Home/Index.html"); if (System.IO.File.Exists(path)) { string html = System.IO.File.ReadAllText(path); context.Response.Write(html); context.Session["IsStaticHtml"] = true; context.Response.End(); } } }
5.执行首页:
[MyFirstHome] public ActionResult Index() { View_Home view_Home = null; var IsStaticHtml = Convert.ToBoolean(Session["IsStaticHtml"]); if (!IsStaticHtml) { view_Home = new View_Home(); using (BangLiEntities bangLi = new BangLiEntities()) { view_Home.CommandAdExtendList = Dal.CommandAdDal.Instance(bangLi).GetInit().ToList(); view_Home.NewsExtendList = Dal.NewsDal.Instance(bangLi).GetInit().OrderByDescending(u => u.AddDateTime).Take(5).ToList(); } return View(view_Home); } else { return null; } }
说明:可以让一个超链接或跳转地址直接跳转到一个html的静态页面,速度会更快;
以上是“ASP.NET MVC如何生成静态页面”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注创新互联行业资讯频道!