ASP MVC3 Chewing---(2) template page

Source: Internet
Author: User

This section demonstrates how to use the template page in MVC3, in the traditional WebForm design pattern, we use masterpage as the template page, and in the MVC3 Razor view design, we use a different approach as the template page.

  Create a new MVC3 project, in solution resource management, we can see a shared folder underneath the Views folder. There is a _layout.cshtml page in the shared folder. This is the default template page in the project. such as               1. New content pages          content pages are also called view layout pages in MVC3. You can right-select the View folder, add a view to add a content page, and then select the appropriate template. Here is the content page we created viewpageone.cshtml          The page that uses the template page will automatically generate code in the page. To specify a template page, use layout to specify a specific template page. If there is no layout property in the content page, the default template page is used  [html]@{     viewbag.title = "Viewpageone";      Layout = "~/views/shared/_layout.cshtml";  }    

ASP MVC3 Chewing---(2) template page

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.