ASP MVC3 Chewing---(3) Razor view syntax

Source: Internet
Author: User

MVC3.0 in the new Razor view, razor view of the syntax with the @ symbol as the core, seemingly in this era inseparable from the @, Weibo, mailboxes are used this.

  1. Output variables and text  [html]  @DateTime. Now    @DateTime. now[html] View [email protected] ( int i = 0; I < 5; i++)  {    <p>@i</p>  }    @for (int i = 0; i < 5; i++) {   &lt ;p >@i</p>}  2.html tag Encoding    HTML tags are encoded by default.    use Html.raw to encode HTML tags  [html] @{     string str = "Hello <br/>word";      @str      @Html. Raw (str)     }   @{    String str = "Hello <br/>word";    @str     @Html. Raw (str)    }  3. Comments    using @* Comment Content  *@ notation  [html] @*  //return method return value  *@   @*//return method return value *@  4. Single-line output   Use @: For single-line output or single-line output with text tags  [html] @{        @: Hello    @: World     }      <text>     Hello    World    </text>   @{      @: hello  @: World   }    <text>   hello  world  </text>    [email  Protected] No space output variable   if @ before no space output variable, you can use @ () to output &NBSP;[HTML]&NBSP;&LT;P&GT;[EMAIL&NBSP;PROTECTED] (DateTime.Now) </p>   <p>[email protected] (datetime.now) </p>  6. Output @ symbol in page   If you want to output the @ symbol in the page, use two @ symbols instead of  [html] <p>[email protected]@@ (DateTime.Now) </p>    <p>[email protected]@@ (DateTime.Now) </p>  

ASP MVC3 Chewing---(3) Razor view syntax

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.