zoukankan      html  css  js  c++  java
  • ASP(VB)数据类型转换

    vb string怎么转date类型:

    asp是弱类型语言,不用显式转换。一般转换类型的函数有以下几个:

    CBool:返回Boolean 类型

    CByte:返回字节类型

    CCur :返回货币类型

    CDate:返回日期类型

    CDbl :返回双精度类型

    Chr :返回 ANSI 字符码相关的字符

    CInt :返回整形类型

    CLng :返回Long类型

    例:

    '实际我的程序中s_start,s_end这两个都是获取的
    '获取两个日期相差天数
    Dim s_start As String
    Dim s_end As String
    s_start = "2021-3-17"
    s_end = "2021-4-1"
    
    response.write cdate(s_end)-cdate(s_start)
  • 相关阅读:
    列表
    break和continue
    第三天下午
    第二天
    简历,面试
    周三 景安
    应届生求职优势(我的求职心…

    2013年01月02日
    Click and Drag
  • 原文地址:https://www.cnblogs.com/bellin124/p/14610954.html
Copyright © 2011-2022 走看看