using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace SilverlightWebService
{
public partial class WebForm1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
DateTime dt = DateTime.Now.AddDays(-10);
Response.Write("오늘날짜보다 10일전:"+dt.ToShortDateString()+"<br>");
TimeSpan ts = DateTime.Now.Subtract(dt);
double d= ts.TotalDays;
Response.Write("날짜차이간격:"+d.ToString());
}
}
}
'C#.NET' 카테고리의 다른 글
[MSDN]박싱(Boxing) 언박싱(UnBoxing) (0) | 2010.01.04 |
---|---|
[MSDN].NET Framework Client Profile (0) | 2009.12.30 |
[MSDN]Windows 서비스 응용 프로그램을 위한 설치 프로젝트를 만드는 방법 (0) | 2009.12.29 |
base(C# 참조) (3) | 2009.12.29 |
app.config 읽기 (0) | 2009.12.23 |
[VS 2005,비주얼 스튜디오] 잘못된 바인딩 핸들입니다 (0) | 2009.12.15 |
[MSDN] Control.Invoke 메서드 (Delegate, Object[]) (0) | 2009.12.15 |
[암호화,MD5,SHA1] 비밀번호 암호화 하기 (0) | 2009.12.15 |
DataGridView VirtualMode (0) | 2009.12.14 |
Windows Forms DataGridView 컨트롤에서 가상 모드 구현 (0) | 2009.12.11 |