ASP. NET MVC3 Chew slowly --- (3) Razor view syntax

Source: Internet
Author: User

The Razor view is added to MVC3.0. the syntax of the Razor view is centered on the @ symbol. It seems that @ is indispensable in this era. This is used for Weibo and email. 1. Output Variables and text [html] @ DateTime. Now @ DateTime. Now [html] view plaincopyprint? @ For (int I = 0; I <5; I ++) {<p> @ I </p>} @ for (int I = 0; I <5; I ++) {<p> @ I </p>} 2. by default, HTML tags are encoded. Use HTML. RAW does not encode HTML tags. [html] @ {string str = "Hello <br/> Word"; @ str @ Html. raw (str) }@{ string str = "Hello <br/> Word"; @ str @ Html. raw (str)} 3. use the @ * Comment content * @ symbol to annotate [html] @ * // return the method return value * @ 4. single-row output uses @: for single-row output. You can also use the text mark to output a single-row [html] @ {@: Hello @: world} <text> Hello world </text> {@: Hello @: world} <text> Hello world </text> 5. @ No space before output variable if no space before @ output variable, you can use @ () to output [html] <p> Hello @ (DateTime. now) </p> <p> Hello @ (DateTime. now) </p> 6. output the @ symbol on the page. If you want to output the @ symbol on the page, two @ symbols can be used to replace [html] <p> Hello (DateTime. now) </p> <p> Hello (DateTime. now) </p>

Related Article

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.