码迷,mamicode.com
首页 > 其他好文 > 详细

Razor引擎的转换数据类型

时间:2014-12-12 19:03:22      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:style   os   sp   数据   ad   as   .net   table   ht   

AsInt()

把字符串转换为整数。

if (myString.IsInt())

IsInt()

{myInt=myString.AsInt();}

AsFloat()

把字符串转换为浮点数。

if (myString.IsFloat())

IsFloat()

{myFloat=myString.AsFloat();}

AsDecimal()

把字符串转换为十进制数。

if (myString.IsDecimal())

IsDecimal()

{myDec=myString.AsDecimal();}

AsDateTime()

把字符串转换为 ASP.NET DateTime 类型

myString="10/10/2012";

IsDateTime()

myDate=myString.AsDateTime();

AsBool()

把字符串转换为逻辑值。

myString="True";

IsBool()

myBool=myString.AsBool();

ToString()

把任意数据类型转换为字符串。

myInt=1234;

myString=myInt.ToString();

Razor引擎的转换数据类型

标签:style   os   sp   数据   ad   as   .net   table   ht   

原文地址:http://www.cnblogs.com/ypfnet/p/4160272.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!