zoukankan      html  css  js  c++  java
  • ASP.NET Razor

    http://www.w3schools.com/aspnet/razor_cs_variables.asp

    Variables are named entities used to store data.

    Converting Data Types

    Converting from one data type to another is sometimes useful.

    The most common example is to convert string input to another type, such as an integer or a date.

    As a rule, user input comes as strings, even if the user entered a number. Therefore, numeric input values must be converted to numbers before they can be used in calculations.

    Below is a list of common conversion methods:

    MethodDescriptionExample
    AsInt()
    IsInt()
    Converts a string to an integer. if (myString.IsInt())
      {myInt=myString.AsInt();}
    AsFloat()
    IsFloat()
    Converts a string to a floating-point number. if (myString.IsFloat())
      {myFloat=myString.AsFloat();}
    AsDecimal()
    IsDecimal()
    Converts a string to a decimal number. if (myString.IsDecimal())
      {myDec=myString.AsDecimal();}
    AsDateTime()
    IsDateTime()
    Converts a string to an ASP.NET DateTime type. myString="10/10/2012";
    myDate=myString.AsDateTime();
    AsBool()
    IsBool()
    Converts a string to a Boolean. myString="True";
    myBool=myString.AsBool();
    ToString() Converts any data type to a string. myInt=1234;
    myString=myInt.ToString();
  • 相关阅读:
    Array
    ie兼容
    webpack----entry
    webpack——html-webpack-plugin
    webpack 报错 path is not defind
    PHPStorm自动压缩YUI Compressor配置
    fly
    Math.max得到数组中最大值
    简单html弹窗
    js中页面跳转(href)中文参数传输方式
  • 原文地址:https://www.cnblogs.com/chucklu/p/5632293.html
Copyright © 2011-2022 走看看