Customizing Site-Wide Behavior for ASP.NET Web Pages (Razor) Sites By Tom FitzMacken|February 17, 2014 This article explains how to make site-side settings for pages in an ASP.NET Web Pages (Razor) website. What you'll learn: How to run code that let…
如何在ASP.NET Web站点中统一页面布局[Creating a Consistent Layout in ASP.NET Web Pages(Razor) Sites] 一.布局页面介绍[About Layout Pages] 很多网站有些内容需要显示在各个页面中,比如Header,Footer或者告诉用户已经登录的部分.ASP.NET允许你创建一个单独的文件来包含文本.标签和代码的内容块,从而搭建一个风格整齐的网站.接下来你就可以将这个内容块插入到任何你想要让它展示的页面中.采用这种方法…
ASP.NET Web Pages (Razor) FAQ By Tom FitzMacken|February 7, 2014 Print   This article lists some frequently asked questions about ASP.NET Web Pages (Razor) and WebMatrix. Software versions used in the tutorial What's the difference between ASP.NET We…
ASP.NET Web Pages (Razor) API Quick Reference By Tom FitzMacken|February 10, 2014 Print This page contains a list with brief examples of the most commonly used objects, properties, and methods for programming ASP.NET Web Pages with Razor syntax. Desc…
This article explains how to use a chart to display data in an ASP.NET Web Pages (Razor) website by using the Chart helper. What you'll learn: How to display data in a chart. How to style charts using built-in themes. How to save charts and how to ca…
ylbtech-.Net-ASP.NET Web Pages:帮助器 1.返回顶部 1. ASP.NET Web Pages - 帮助器 Web 帮助器大大简化了 Web 开发和常见的编程任务. ASP.NET 帮助器 ASP.NET 帮助器是通过几行简单的 Razor 代码即可访问的组件. 您可以使用存放在 .cshtml 文件中的 Razor 语法构建自己的帮助器,或者使用内建的 ASP.NET 帮助器. 在本教程接下来的章节中,您将学到如何使用 Razor 帮助器. 下面是一些有用的 Ra…
ylbtech-.Net-ASP.NET Web Pages:对象 1.返回顶部 1. ASP.NET Web Pages - 对象 Web Pages 经常是跟对象有关的. Page 对象 您已经看到了一些在使用的 Page 对象方法: @RenderPage("header.cshtml") @RenderBody() 在前面的章节中,您已经看到了两个 Page 对象属性(isPost 和 Request): If (isPost) { if (Request["Choi…
ylbtech-.Net-ASP.NET Web Pages:文件夹 1.返回顶部 1. ASP.NET Web Pages - 文件夹 本章介绍有关文件夹和文件夹路径的知识. 在本章中,您将学到: 逻辑文件夹结构和物理文件夹结构 虚拟名称和物理名称 Web URL 和 Web 路径 逻辑文件夹结构 下面是典型的 ASP.NET 网站文件夹结构: "Account" 文件夹包含登录和安全文件 "App_Data" 文件夹包含数据库和数据文件 "Images…
ylbtech-.Net-ASP.NET Web Pages:Razor 1.返回顶部 1. ASP.NET Web Pages - 添加 Razor 代码 在本教程中,我们将使用 C# 和 Visual Basic 代码的 Razor 标记. 什么是 Razor ? Razor 是一种将基于服务器的代码添加到网页中的标记语法 Razor 具有传统 ASP.NET 标记的功能,但更容易使用并且更容易学习 Razor 是一种服务器端标记语法,与 ASP 和 PHP 很像 Razor 支持 C# 和…
14 July 2012 20:24 http://www.mikesdotnetting.com/article/192/transferring-data-between-asp-net-web-pages There are a huge number of articles and blog posts on persisting data between user requests in ASP.NET. However, the ASP.NET Web Pages framework…