views:

105

answers:

1

Greetings people,

I'm going to start working on project developed in ASP.NET.

In this project I need to show the data in a month calender like Google's calendar or something like that.

So my question is: Is there any control I can use to do this thing? If not, what do you suggest?

+1  A: 

There's the Calendar control in ASP.NET which offers some basic functionality that you may take a look at. There's also a calendar extension in the AJAX Control Toolkit.

Darin Dimitrov
thanx Darinbut unfortunately i can't add any data to these calenders. i want to write some info under any day.as far as i know it is not possible with the current Calender control in ASP.NET
Abdulrhman
Abdulrhman, you most certainly can add data to the basic Calendar server control.Look at the OnDayRender event. You would add data there. You have total access to the cell in that event.
TheGeekYouNeed