1樓:匿名使用者
首先如果你日期中的-符號是固定的話,那可以考慮用擷取字串substring()
不過上面的方法通用性比較差
所以,可以把你的時間先轉換成datetime型別(時間格式正確都沒問題),然後你可以使用datetime.day;date;month等屬性獲取你想要的值
例子:string date = "2012-10-11";
datetime dt = datetime.parse(date);
int day=dt.day;
int month = dt.month;
2樓:
strabc=split(lastdate,"-")stringx=strabc(0)
stringy=strabc(1)
stringz=strabc(2)
或stringx=split(lastdate,"-")(0)stringy=split(lastdate,"-")(1)stringz=split(lastdate,"-")(2)
3樓:
<%y=year(now())
m=month(now())
d=day(now())
response.write(y)
response.write("
")response.write(m)
response.write("
")response.write(d)
%>
4樓:士芮安
amonth=month()
if len(amonth)=1 then amonth="0" & amonth
asp寫入資料庫日期的問題
你是按照 int 型別來插入 日期列了下面是重現你這個情況的例子 與 解決辦法。1 create table t dt datetime 2 go 1 insert into t values 2013 05 29 2 go 1 行受影響 1 select from t 2 go dt 1905 0...
時間轉換為數字asp函式,ASP中由日期轉換為字串的函式
formatdatetime 函式 返回表示式,此表示式已被格式化為日期或時間。formatdatetime date namedformat 引數date必選項。要被格式化的日期表示式。namedformat可選項。指示所使用的日期 時間格式的數值,如果省略,則使用 vbgeneraldate。常...
ASP與的問題,ASP與模板的問題
1 用fso 讀取模板檔案到 變數裡面 2 用replace 函式替換,ok了 3 注意 目前的模板有好幾種,比較簡單點的cms系統裡面的是,分開成 頭部模板,底部模板這樣的,放在資料庫裡呼叫的 一種是寫成 ini 檔案的 用 頁面檔案 頁面檔案 這樣的標籤分割的,如 頁面頭 頁面頭 頁面腳 頁面腳...