반응형
현재 월 및 연도를 가져오는 방법
현재 월과 연도를 ASP.NET의 레이블에 표시하는 방법을 알려줄 수 있는 사람이 있습니까?
다음 두 개의 레이블이 있는 경우:
<asp:Label ID="MonthLabel" runat="server" />
<asp:Label ID="YearLabel" runat="server" />
따라서 다음 코드를 사용하여 이러한 레이블에 대한 텍스트 속성을 설정하기만 하면 됩니다.
MonthLabel.Text = DateTime.Now.Month.ToString();
YearLabel.Text = DateTime.Now.Year.ToString();
날짜 시간을 사용합니다.이제 재산.년 및 월 속성(둘 다 정수)을 포함하는 DateTime 개체를 반환합니다.
string currentMonth = DateTime.Now.Month.ToString();
string currentYear = DateTime.Now.Year.ToString();
monthLabel.Text = currentMonth;
yearLabel.Text = currentYear;
다음과 같이:
DateTime.Now.ToString("MMMM yyyy")
자세한 내용은 날짜 시간 형식 문자열을 참조하십시오.
public string GetCurrentYear()
{
string CurrentYear = DateTime.Now.Year.ToString();
return CurrentYear;
}
public string GetCurrentMonth()
{
string CurrentMonth = DateTime.Now.Month.ToString();
return CurrentMonth;
}
label1.Text = DateTime.Now.Month.ToString();
그리고.
label2.Text = DateTime.Now.Year.ToString();
다음을 사용할 수 있습니다.
<p>© <%: DateTime.Now.Year %> - My ASP.NET Application</p>
레이저를 사용하여 현재 연도 찾기 이것을 사용해 보십시오.
@DateTime.Now.Year
using System.Globalization;
LblMonth.Text = DateTime.Now.Month.ToString();
DateTimeFormatInfo dinfo = new DateTimeFormatInfo();
int month = Convert.ToInt16(LblMonth.Text);
LblMonth.Text = dinfo.GetMonthName(month);
언급URL : https://stackoverflow.com/questions/3890956/how-to-get-current-month-and-year
반응형
'programing' 카테고리의 다른 글
레일 : 종속 => :dependent VS : 종속 => :delete_all (0) | 2023.06.22 |
---|---|
MariaDB: JSON_TABLE 없이 JSON 어레이에 액세스 (0) | 2023.06.22 |
파이썬은 전체적으로 어떻게 관리합니까? (0) | 2023.06.22 |
Oracle에서 잠긴 행을 찾는 방법 (0) | 2023.06.22 |
MongoDb: .gz 파일에서 덤프 데이터를 가져오는 방법은 무엇입니까? (0) | 2023.06.22 |