我有一个ASP日历页,它从数据库中提取事件列表。我遇到的问题是,当我单击下一个月和前一个月时,显示的是当前月份的数据,而不是前一个月和下一个月的数据。单击不同月份时,ASP Calendar是否重新加载整个页面,还是充当查询字符串属性?
下面是我目前正在使用的代码:
protected DataSet dsEvents;
protected void Page_Load(object sender, EventArgs e)
{
Calendar1.FirstDayOfWeek = FirstDayOfWeek.Sunday;
Calendar1.NextPrevFormat = NextPrevFormat.FullMonth;
Calendar1.TitleFormat = TitleFormat.Month;
Calendar1.ShowGridLines = true;
Calendar1.DayStyle.HorizontalAlign = HorizontalAlign.Left;
Calendar1.DayStyle.VerticalAlign = VerticalAlign.Top;
Calendar1.OtherMonthDayStyle.BackColor = System.Drawing.Color.LightGray;
Calendar1.VisibleDate = DateTime.Today;
FillEventDataset();
GetFirstDayOfNextMonth();
if (!IsPostBack)
{
Calendar1.VisibleDate = DateTime.Today;
FillEventDataset();
GetFirstDayOfNextMonth();
}
}
protected DateTime GetFirstDayOfNextMonth()
{
int monthNumber, yearNumber;
if (Calendar1.VisibleDate.Month == 12)
{
monthNumber = 1;
yearNumber = Calendar1.VisibleDate.Year + 1;
}
else
{
monthNumber = Calendar1.VisibleDate.Month + 1;
yearNumber = Calendar1.VisibleDate.Year;
}
DateTime lastDate = new DateTime(yearNumber, monthNumber, 1);
return lastDate;
}
protected void FillEventDataset()
{
DateTime firstDate = new DateTime(Calendar1.VisibleDate.Year, Calendar1.VisibleDate.Month, 1);
DateTime lastDate = GetFirstDayOfNextMonth();
dsEvents = GetSelectedMonthData(firstDate, lastDate);
}
protected DataSet GetSelectedMonthData(DateTime firstDate, DateTime lastDate)
{
DataSet dsMonth = new DataSet();
using (SqlConnection conn = new SqlConnection(connectionString))
{
SqlCommand comm = new SqlCommand("SELECT EventDate, EventLocation, EventSubject, EventStart FROM EventList WHERE EventDate >= @FirstDate AND EventDate <= @LastDate", conn);
comm.CommandType = CommandType.Text;
comm.Parameters.AddWithValue("@FirstDate", firstDate);
comm.Parameters.AddWithValue("@LastDate", lastDate);
conn.Open();
SqlDataAdapter sqlDataAdapter = new SqlDataAdapter(comm);
try
{
sqlDataAdapter.Fill(dsMonth);
}
finally
{
conn.Close();
}
}
return dsMonth;
}
protected void Calendar1_DayRender(object sender, DayRenderEventArgs e)
{
e.Day.IsSelectable = false;
e.Cell.ForeColor = System.Drawing.Color.Black;
if (e.Day.IsOtherMonth)
{
e.Cell.Visible = true;
e.Cell.Text = "";
}
DateTime nextEvent;
String nextLocation;
String nextSubject;
String nextStart;
if (dsEvents != null)
{
foreach (DataRow dr in dsEvents.Tables[0].Rows)
{
nextEvent = (DateTime)dr["EventDate"];
nextLocation = dr["EventLocation"].ToString();
nextSubject = dr["EventSubject"].ToString();
nextStart = dr["EventStart"].ToString();
if (nextEvent == e.Day.Date)
{
Literal literal1 = new Literal();
literal1.Text = "<br/>";
e.Cell.Controls.Add(literal1);
Label label1 = new Label();
label1.Text = nextStart.ToString();
label1.Font.Size = new FontUnit(FontSize.Small);
e.Cell.Controls.Add(label1);
Literal literal2 = new Literal();
literal2.Text = " ";
e.Cell.Controls.Add(literal2);
Label label2 = new Label();
label2.Text = nextSubject.ToString();
label2.Font.Size = new FontUnit(FontSize.Small);
e.Cell.Controls.Add(label2);
Literal literal3 = new Literal();
literal3.Text = " ";
e.Cell.Controls.Add(literal3);
Label label3 = new Label();
label3.Text = nextLocation.ToString();
label3.Font.Size = new FontUnit(FontSize.Small);
e.Cell.Controls.Add(label3);
}
}
}
}
protected void Calendar1_VisibleMonthChanged(object sender, MonthChangedEventArgs e)
{
GetFirstDayOfNextMonth();
FillEventDataset();
}
发布于 2018-08-31 07:03:02
我测试了你的全部代码。效果很好。但是在开始加载时,它会执行代码两次。
//remove these two lines
FillEventDataset();
GetFirstDayOfNextMonth();
if (!IsPostBack)
{
Calendar1.VisibleDate = DateTime.Today;
FillEventDataset();
GetFirstDayOfNextMonth();
}
若要查看是否使用了正确的月份,请将此行添加到GetSelectedMonthData
方法中。
Label1.Text = firstDate.ToLongDateString() + " - " + lastDate.ToLongDateString();
如果显示的月份是正确的,则数据库中的日期很可能会出现问题。但为了确保..。您是否将事件添加到Calendar控件?
<asp:Calendar ID="Calendar1" runat="server" OnDayRender="Calendar1_DayRender"
OnVisibleMonthChanged="Calendar1_VisibleMonthChanged"></asp:Calendar>
更确切地说,最好将AddWithValue
更改为
comm.Parameters.Add("@FirstDate", SqlDbType.DateTime).Value = firstDate;
comm.Parameters.Add("@LastDate", SqlDbType.DateTime).Value = lastDate;
发布于 2021-03-03 01:53:49
单击不同月份时,ASP Calendar是否重新加载整个页面,还是充当查询字符串属性?
是的,问题是回发,你无法避免。
因为我有几个日历,所以我把它写得很一般。
Foo.aspx
<asp:Calendar ID="cal1" runat="server" OnVisibleMonthChanged="cal_VisibleMonthChanged" [...]/>
<asp:Calendar ID="cal2" runat="server" OnVisibleMonthChanged="cal_VisibleMonthChanged" [...]/>
<asp:Calendar ID="cal3" runat="server" OnVisibleMonthChanged="cal_VisibleMonthChanged" [...]/>
Foo.aspx.cs
protected void cal_VisibleMonthChanged(object sender, MonthChangedEventArgs e)
{
((Calendar)sender).Visible = true;
}
这篇文章(对我) https://stackoverflow.com/a/25750717/15274506很有帮助
https://stackoverflow.com/questions/52077271
复制