快速业务通道

ASP.NET显示今天农历的代码

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-04-12

using System;
using System.Globalization;//

namespace Project.ChinaDate
{

    ///
<summary>
   
/// 显示今天农历类
    ///
</summary>


public
class CNDate
    {
        private DateTime m_Date; //今天的日期

private
readonly
int cny; //农历的年月日

private
int cnm; //农历的年月日

private
readonly
int cnd; //农历的年月日

private
readonly
int icnm; //农历闰月

///
<summary>
       
/// 显示日期构造函数
        ///
</summary>

public CNDate()
        {
            m_Date = DateTime.Today;
            ChineseLunisolarCalendar cnCalendar =
new ChineseLunisolarCalendar();
            cny = cnCalendar.GetSexagenaryYear(m_Date);
            cnm = cnCalendar.GetMonth(m_Date);
            cnd = cnCalendar.GetDayOfMonth(m_Date);
            icnm = cnCalendar.GetLeapMonth(cnCalendar.GetYear(m_Date));
        }
        ///
<summary>
       
/// 返回格式化的公历显示
        ///
</summary>
       
///
<returns>格式如:2008年05月14日</returns>

public
string GetDate()
        {
            int y = m_Date.Year;
            int m = m_Date.Month;
            int d = m_Date.Day;
            return String.Format("{0}年{1:00}月{2:00}日", y, m, d);
        }
        ///
<summary>
       
/// 返回格式化的星期显示
        ///
</summary>
       
///
<returns>格式如:星期日</returns>

       
public
string GetWeek()
        {
            string ws =
"星期";
            int w = Convert.ToInt32(m_Date.DayOfWeek);
            ws = ws +
"日一二三四五六".Substring(w, 1);
            return ws;
        }
        ///
<summary>
       
/// 返回格式化的农历显示
        ///
</summary>
       
///
<returns>格式如:戊子(鼠)年润四月廿三</returns>

public
string GetCNDate()
        {
            string txcns =
"";
            const
string szText1 =
"癸甲乙丙丁戊己庚辛壬";
            const
string szText2 =
"亥子丑寅卯辰巳午未申酉戌"

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号