Calender Control onClick event

  • Thread starter Thread starter Kwena Seema via .NET 247
  • Start date Start date
K

Kwena Seema via .NET 247

Hi, I'm doing a web app,what i want to achieve is: when i click a specific day on a calender control, it takes me to a specified aspx page.
 
Hi,

The calendar control like many server controls does a postback when any particular item on it is clicked. You will have to write code in the codebehind page in the selectionchanged event or monthchange event of the calendar control and do a server.transfer or response.redirect to the page u want.
 
Back
Top