TextBoxとButtonがあります。テキストボックスに月と年(例:2013年4月)を入力してボタンをクリックすると、その特定の月に合わせてカスタマイズされたカレンダーが表示されます。
注:カレンダーには土曜日または日曜日はありません。日は月曜日から金曜日のみになります。
これは、C#を使用するWebベースのASP.NETアプリケーションである必要があります。
このカスタマイズされたカレンダーを作成するにはどうすればよいですか?上記の機能を実装するサンプルコードを提供します。
TextBoxとButtonがあります。テキストボックスに月と年(例:2013年4月)を入力してボタンをクリックすると、その特定の月に合わせてカスタマイズされたカレンダーが表示されます。
注:カレンダーには土曜日または日曜日はありません。日は月曜日から金曜日のみになります。
これは、C#を使用するWebベースのASP.NETアプリケーションである必要があります。
このカスタマイズされたカレンダーを作成するにはどうすればよいですか?上記の機能を実装するサンプルコードを提供します。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
public partial class Default2 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
string month = txtMonth.Text;// should be in the format of Jan, Feb, Mar, Apr, etc...
int yearofMonth = Convert.ToInt32(txtYear.Text);
DateTime dateTime = Convert.ToDateTime("01-" + month + "-" + yearofMonth);
DataRow dr;
DataTable dt = new DataTable();
dt.Columns.Add("Monday");
dt.Columns.Add("Tuesday");
dt.Columns.Add("Wednesday");
dt.Columns.Add("Thursday");
dt.Columns.Add("Friday");
dr = dt.NewRow();
for (int i = 0; i < DateTime.DaysInMonth(dateTime.Year, dateTime.Month); i += 1)
{
txtMonth.Text = Convert.ToDateTime(dateTime.AddDays(0)).ToString("dddd");
if (Convert.ToDateTime(dateTime.AddDays(i)).ToString("dddd") == "Monday")
{
dr["Monday"] = i + 1;
}
if (dateTime.AddDays(i).ToString("dddd") == "Tuesday")
{
dr["Tuesday"] = i + 1;
}
if (dateTime.AddDays(i).ToString("dddd") == "Wednesday")
{
dr["Wednesday"] = i + 1;
}
if (dateTime.AddDays(i).ToString("dddd") == "Thursday")
{
dr["Thursday"] = i + 1;
}
if (dateTime.AddDays(i).ToString("dddd") == "Friday")
{
dr["Friday"] = i + 1;
dt.Rows.Add(dr);
dr = dt.NewRow();
continue;
}
if (i == DateTime.DaysInMonth(dateTime.Year, dateTime.Month) - 1)
{
dt.Rows.Add(dr);
dr = dt.NewRow();
}
}
GridView1.DataSource = dt;
GridView1.DataBind();
}
}
と
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="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:TextBox ID="txtMonth" runat="server">Mon</asp:TextBox>
<asp:TextBox ID="txtYear" runat="server"></asp:TextBox>
<asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="Button" />
<br />
<br />
<asp:GridView ID="GridView1" runat="server">
</asp:GridView>
</div>
</form>
</body>
</html>
ありがとう...