ASP.Net中對時間的處理

來源:互聯網
上載者:User
asp.net Format方法的格式是:

  public string Format(
  string format,
  IServiceObjectProvider sp
  );

   format是指我們指定的格式,它的取值有很多,我得列表:)

  標準的Format格式Format Format 模式
  d MM/dd/yyyy 如(2001-3-27)
  D dddd, MMMM dd, yyyy 如(2001年3月27日)
  f dddd, MMMM dd, yyyy HH:mm 如(2001年3月27日 0:00)
  F dddd, MMMM dd, yyyy HH:mm:ss 如(2001年3月27日 0:00:00)
  g MM/dd/yyyy HH:mm 如(2001-3-27 0:00)
  G MM/dd/yyyy HH:mm:ss 如(2001-3-27 0:00:00)
  m, M MMMM dd 如(三月 27)
  r, R ddd, dd MMM yyyy HH’:’mm’:’ss ’GMT’ 如(Mon, 26 Mar 2001 16:00:00 GMT)
  s yyyy-MM-dd HH:mm:ss 好像不能使用
  t HH:mm 如(0:00)
  T HH:mm:ss 如(0:00:00)
  u yyyy-MM-dd HH:mm:ss 如(2001-03-26 16:00:00Z)
  U dddd, MMMM dd, yyyy HH:mm:ss 如(2001年3月26日 16:00:00)
  y, Y MMMM, yyyy 如(2001年3月)

  自訂格式列表Format Pattern Description
  d 如:2001-3-27
  dd 如:27
  ddd 如:星期一
  dddd 如:星期一(全名)
  M 如:三月 27
  MM 如:03
  MMM 如:三月
  MMMM 如:三月(全稱)
  y 如:2001年3月
  yy 如:01
  yyyy 如:2001
  gg 如:A.D.
  hh, hh* 如:12
  HH, HH* 如:00
  m 如:三月 27
  mm, mm* 如:00(分鐘)
  s 如:2001-03-27T00:00:00
  ss, ss* 如:00(秒)
  t 如:0:00
  tt, tt* 如:上午






  下面是一個簡單操作的例子。

  <% @ Page Language="C#" %>
  <% @ Import Namespace="System.Data" %>
  <Script Language="C#" Runat="Server">
  public void Page_Load(Object src,EventArgs e)
  {
  DateTime dt = DateTime.Now;
  ctime.Text=dt.Format("MM",null).ToString();
  }
  </script>
  <html>
  <head>
  <title></title>
  </head>
  <body>
  <asp:Label id="ctime" runat="server" />
  </body>
  </html> 


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.