I have an Event Calendar in which the data is being pulled from sql and placed into a collection(list). When the calendar renders for the first time it works fine. When the calendar steps forward and backward from the OnVisibleMonthChanged event it works fine but when i step forward with the OnVisibleMonthChanged event and then use a dropdown box with the month in it to return to the previous month it does not change the calendar date to the month selected .

I have included most of the code for the page. If anyone has any idea I would appreciate it.

protected void MonthCalendar_SelectionChanged(object sender, EventArgs e)
{
    MonthCalendar.TodaysDate = DateTime.Parse(ddlMonth.SelectedValue.ToString() + "/" + "01" + "/" + ddlYear.SelectedValue.ToString());
    ddlMonth.SelectedValue = MonthCalendar.TodaysDate.Month.ToString();
    ddlYear.SelectedValue = MonthCalendar.TodaysDate.Month.ToString();
    MyCollection = Get_Event();

}

protected void ddlMonth_SelectedIndexChanged(object sender, EventArgs e)
{
    MonthCalendar.TodaysDate = DateTime.Parse(ddlMonth.SelectedValue.ToString() + "/" + "01" + "/" + ddlYear.SelectedValue.ToString());
    MyCollection = Get_Event();
    MonthCalendar.DayRender += new DayRenderEventHandler(this.MonthCalendar_DayRender);

}
protected void showCalChange(object sender, MonthChangedEventArgs e)
{
    // Response.Write(e.NewDate.Month);
    MonthCalendar.TodaysDate = DateTime.Parse(e.NewDate.Month.ToString() + "/" + "01" + "/" + e.NewDate.Year.ToString());
    ddlMonth.SelectedValue = e.NewDate.Month.ToString();
    ddlYear.SelectedValue = e.NewDate.Year.ToString();
    MyCollection = Get_Event();
    this.Load += this.Page_Load;

}

public void MonthCalendar_DayRender(object o, DayRenderEventArgs e) { //if (CurrentCalendarDate != ddlMonth.SelectedValue.ToString()) //{ // DateTime FirstDayinMonth = new DateTime(int.Parse(MonthCalendar.TodaysDate.Year.ToString()), int.Parse(MonthCalendar.TodaysDate.Month.ToString()), 1); // MyCollection = Get_Event(); //} DateTime myDate = DateTime.Now; int myMonth = myDate.Month;

    StringBuilder strTemp = new StringBuilder();
    string compDate = "01/01/1900"; // Date to compare initially
    DateTime DayVal = Convert.ToDateTime(compDate);
    foreach (My_Date temp_dt in MyCollection)
    {
        strTemp.Append(MonthCalendar.TodaysDate.Month.ToString() + "/" + temp_dt.StartDay.ToString() + "/" + MonthCalendar.TodaysDate.Year.ToString());
        DayVal = DateTime.Parse(strTemp.ToString());
        if (e.Day.Date == Convert.ToDateTime(DayVal.ToString("d")))
        {
            HyperLink link = new HyperLink();
            link.Text = "<br>" + temp_dt.EventTitle.ToString() + "<hr>" + "<br>";
            link.NavigateUrl = /Calendar/EventDetail.aspx?CalendarID=" + temp_dt.EventID.ToString();
            e.Cell.Controls.Add(link);
        }
        strTemp.Clear();
    }
    if (RepeaterCalendar.Items.Count == 0)
    {
        DateTime DayinMonth = new DateTime(int.Parse(MonthCalendar.TodaysDate.Year.ToString()), int.Parse(MonthCalendar.TodaysDate.Month.ToString()), 1);
        DateTime lastDayinMonth = new DateTime(int.Parse(MonthCalendar.TodaysDate.Year.ToString()), int.Parse(MonthCalendar.TodaysDate.Month.ToString()), 1).AddMonths(1).AddDays(-1);
        DataSet rs = storedprocedure(DayinMonth, lastDayinMonth);
        DataTable dt1 = rs.Tables[0];
        DataTable dt2 = rs.Tables[1];
        if (dt2.Rows.Count > 0)
        {
            RepeaterCalendar.DataSource = dt2.Rows;
            RepeaterCalendar.DataBind();

        }
    }
    //CurrentCalendarDate = ddlMonth.SelectedValue.ToString();
}

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.