asp.net中如何将阳历转化为阴历(C#)

 我们有的时候会用到阴历来做一些事情,在1.1的时候,只能用第三方的方法。现在2.0中给了自己的方法,不多说了,放一个例子。
前台:
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm2.aspx.cs" Inherits="WebApplication1.WebForm2" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" >
  4. <head runat="server">
  5.     <title></title>
  6. </head>
  7. <body>
  8.     <form id="form1" runat="server">
  9.     <div>
  10.     
  11.         请输入阳历日期:<asp:TextBox ID="txtSun" runat="server"></asp:TextBox>
  12.         <br />
  13.         <br />
  14.         阳历日期:<asp:TextBox ID="txtMoon" runat="server" ></asp:TextBox>
  15.         <br />
  16.         <br />
  17.         <asp:Button ID="Button1" runat="server" Text="转换" onclick="Button1_Click" />
  18.     
  19.     </div>
  20.     </form>
  21. </body>
  22. </html>
后台“

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.UI;
  6. using System.Web.UI.WebControls;
  7. using System.Globalization;
  8. namespace WebApplication1
  9. {
  10.     public partial class WebForm2 : System.Web.UI.Page
  11.     {
  12.         private ChineseLunisolarCalendar chineseDate = new ChineseLunisolarCalendar();
  13.         protected void Page_Load(object sender, EventArgs e)
  14.         {
  15.         }
  16.         protected void Button1_Click(object sender, EventArgs e)
  17.         {
  18.             string Moon = chineseDate.GetYear(Convert.ToDateTime(this.txtSun.Text.Trim())).ToString() + "-" + chineseDate.GetMonth(Convert.ToDateTime(this.txtSun.Text.Trim())).ToString() + "-" + chineseDate.GetDayOfMonth(Convert.ToDateTime(this.txtSun.Text.Trim()));
  19.             this.txtMoon.Text = Moon;
  20.         }
  21.        
  22.     }
  23. }

你可能感兴趣的:(c,server,asp.net,webform,asp,button)