• HTML中夹杂CODE


    @{
       // Working with numbers
       var a = 4;
       var b = 5;
       var theSum = a + b;

       // Working with characters (strings)
       var technology = "ASP.NET";
       var product ="Web Pages";

       // Working with objects
       var rightNow = DateTime.Now;
    }

    <!DOCTYPE html>
    <htmllang="en">
     
    <head>
       
    <title>Testing Razor Syntax</title>
       
    <metacharset="utf-8"/>
       
    <style>
        body
    {font-family:Verdana;margin-left:50px;margin-top:50px;}
        div
    {border:1px solid black;width:50%;margin:1.2em;padding:1em;}
        span
    .bright {color:red;}
       
    </style>
     
    </head>
    <body>
     
    <h1>Testing Razor Syntax</h1>
     
    <formmethod="post">

       
    <div>
         
    <p>The value of <em>a</em> is @a.  The value of <em>b</em> is @b.
         
    <p>The sum of <em>a</em> and <em>b</em> is <strong>@theSum</strong>.</p>
         
    <p>The product of <em>a</em> and <em>b</em> is <strong>@(a*b)</strong>.</p>
       
    </div>

       
    <div>
         
    <p>The technology is @technology, and the product is @product.</p>
         
    <p>Together they are <spanclass="bright">@(technology + " " + product)</span></p>
      
    </div>

      
    <div>
        
    <p>The current date and time is: @rightNow</p>
        
    <p>The URL of the current page is<br/><br/><code>@Request.Url</code></p>
      
    </div>

     
    </form>
    </body>
    </html>

    在html中夹杂code:@(),如果只是一个变量,直接 @var即可,如果有计算,即为:@(technology + " " + product)

  • 相关阅读:
    Python必须知道的异常处理
    类的内置方法(用实际代码来验证)
    类的三大特性(继承, 封装, 多态)
    面向对象编程代码详解(依赖关系,关联关系,组合关系)
    函数(匿名函数,嵌套函数,高阶函数,装饰器)
    常用模块
    对磁盘文件的操作(文件处理)
    字符编码
    常用数据类型
    编程介绍
  • 原文地址:https://www.cnblogs.com/littleebeer/p/3365408.html
Copyright © 2020-2023  润新知