.NET中取当前日期所在季度的第一天和最后一天的函数应该如何写?
发布网友
发布时间:2024-10-22 11:06
我来回答
共3个回答
热心网友
时间:2024-10-22 11:11
第一种方案:要求我们在文本框输入一个你想要的月份,进行判断
页面设计代码:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="WebSite1_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="Label1" runat="server" Text="请输入当前月份:"></asp:Label>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="提 交" /><br />
<br />
<asp:Label ID="Label2" runat="server" Text="本季的第一天:"></asp:Label>
<asp:Label ID="Label3" runat="server" ForeColor="#FF0066"></asp:Label>
<asp:Label ID="Label4" runat="server" Text="本季的最后一天:"></asp:Label>
<asp:Label ID="Label5" runat="server" ForeColor="#003399"></asp:Label></div>
</form>
</body>
</html>
页面后台代码:
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Timers;
public partial class WebSite1_Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
int month;
month = Convert.ToInt32(TextBox1.Text);
//农历法
if (month >= 1 && month < 4)
{
Label3.Text = "1月1日";
Label5.Text = "3月31日";
}
else if (month >= 4 && month < 7)
{
Label3.Text = "4月1日";
Label5.Text = "6月30日";
}
else if (month >= 7 && month < 10)
{
Label3.Text = "7月1日";
Label5.Text = "9月30日";
}
else
{
Label3.Text = "10月1日";
Label5.Text = "12月31日";
}
}
}
********************************************************************
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Timers;
public partial class WebSite1_Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
int month;
month = Convert.ToInt32(TextBox1.Text);
//阳历法
if (month >= 3 && month < 6)
{
Label3.Text = "3月1日";
Label5.Text = "5月31日";
}
else if (month >= 6 && month < 9)
{
Label3.Text = "6月1日";
Label5.Text = "8月31日";
}
else if (month >= 9 && month < 12)
{
Label3.Text = "9月1日";
Label5.Text = "11月30日";
}
else
{
Label3.Text = "12月1日";
Label5.Text = "2月28日";
}
}
}
第二种方案:要求自动根据电脑系统的时间月份,进行判断!
页面代码
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="WebSite1_Default2" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="Label1" runat="server"></asp:Label><br />
<br />
<asp:Label ID="Label2" runat="server" Text="本季的第一天:"></asp:Label>
<asp:Label ID="Label3" runat="server" ForeColor="#FF0066"></asp:Label>
<asp:Label ID="Label4" runat="server" Text="本季的最后一天:"></asp:Label>
<asp:Label ID="Label5" runat="server" ForeColor="#003399"></asp:Label><br />
<br />
<br />
</div>
</form>
</body>
</html>
----------------------------------------------------------------------
后台代码:
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class WebSite1_Default2 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
int month;
month = System.DateTime.Now.Month;
Label1.Text = "当前的月份(按阳历算法)是: " + month+"月份";
//阳历法
if (month >= 3 && month < 6)
{
Label3.Text = "3月1日";
Label5.Text = "5月31日";
}
else if (month >= 6 && month < 9)
{
Label3.Text = "6月1日";
Label5.Text = "8月31日";
}
else if (month >= 9 && month < 12)
{
Label3.Text = "9月1日";
Label5.Text = "11月30日";
}
else
{
Label3.Text = "12月1日";
Label5.Text = "2月28日";
}
}
}
如果楼主觉得我辛苦可以追加点分哈!呵呵
热心网友
时间:2024-10-22 11:12
private string GetInceDay()
{
int month =int.Parse( DateTime.Now.Month.ToString());
if (month >=1 || month < 4)
{
return "1月1日";
}
else if (month >= 4 || month < 7)
{
return "4月1日";
}
else if (month >= 7 || month < 10)
{
return "7月1日";
}
else
{
return "10月1日";
}
return "";
}
private string GetEndDay()
{
int month =int.Parse( DateTime.Now.Month.ToString());
if (month >= 1 || month < 4)
{
return "3月31日";
}
else if (month >= 4 || month < 7)
{
return "6月30日";
}
else if (month >= 7 || month < 10)
{
return "9月30日";
}
else
{
return "12月31日";
}
return "";
}
上面的是返回第一天..
下面的是返回最后一天 。。
自己测试测试吧..祝你好运.
热心网友
时间:2024-10-22 11:10
农历法。农历1月到3月是春季,4月到6月是夏季,7月到9月是秋季,10月到12月是冬季。
阳历法。气象学上通常以阳历3月到5月为春季,6月到8月为夏季,9月到11月为秋季,12月到第2年的2月为冬季。
.net取当前月份 int M = System.DateTime.Now.Month;
如果是按着农历来算 则 来个switch 判断
case 1=<M<=3 的 第一天取1月1号 最后一天取3月30
阳历处理思路相同