473,320 Members | 2,071 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,320 software developers and data experts.

calendar view control?

I am looking for some kind of calendar view control that I can show
hyperlinks to records in day cells. This is to be used for showing
scheduled events and people can see events in a calendar view and click on
links to view details of events.

Is there one out there? Thanks.
Nov 19 '05 #1
2 1785
try www.asp.net in the control gallery

--
Curt Christianson
Site & Scripts: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"David C" <pr********@yahoo.com> wrote in message
news:uL*****************@twister.socal.rr.com...
I am looking for some kind of calendar view control that I can show
hyperlinks to records in day cells. This is to be used for showing
scheduled events and people can see events in a calendar view and click on
links to view details of events.

Is there one out there? Thanks.

Nov 19 '05 #2
you can use the regular .net calendar control

try using the Calendar1_DayRender event

Sample code **********************

private void Calendar1_DayRender(object sender,
System.Web.UI.WebControls.DayRenderEventArgs e)
{
if ( e.Day.Date.Year < DateTime.Now.Year)
{
e.Cell.Enabled = false;
e.Cell.Style.Add("cursor","not-allowed");
}

if (e.Day.Date.Year == DateTime.Now.Year)
{
if (e.Day.Date.Month == DateTime.Now.Month)
{
if (e.Day.Date.Day < DateTime.Now.Day)
{
e.Cell.Enabled = false;
e.Cell.Style.Add("cursor","not-allowed");
// e.Cell.Enabled = false;
}
}

if (e.Day.Date.Month < DateTime.Now.Month)
{
e.Cell.Enabled = false;
e.Cell.Style.Add("cursor","not-allowed");

}
}
}

"David C" wrote:
I am looking for some kind of calendar view control that I can show
hyperlinks to records in day cells. This is to be used for showing
scheduled events and people can see events in a calendar view and click on
links to view details of events.

Is there one out there? Thanks.

Nov 19 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: Shyguy | last post by:
Is it possible to create a calendar that shows previous input data and also allows for input of new data?
0
by: Mike Pierson | last post by:
Hello all: I have a C# windows application that needs a custom calendar. I need this calendar displayed as a month view. I also need the ability to insert/manipulate images and text into each...
6
by: Jeff S | last post by:
I would like recommendations for implementing a calendar in an ASP.NET web site. My plan is to store date and event information (e.g,, "Spring Sale") in a database, and when the page is requested,...
3
by: | last post by:
Hi!! Did Infragistics or some other company else provide a web calendar conrol with the features and look of Microsoft Outlook calendar? I mean that feature that you can choose Day / Work Week /...
1
by: KDenney | last post by:
I'm writing a Reminder app in VB.NET that uses the Calendar Control 10.0 for the user to select a date and view the reminders for that day (using a Flexgrid). I want to make bold, or a different...
2
by: Parthiv Joshi | last post by:
Microsoft provides calendar control for month view in .NET. I want to make week view and day view on based of that. So how can I make that in ..NET . If any one have an idea or if some one have...
1
by: DougS | last post by:
Is it possible to highlight more than one date in the calendar control? I'm trying to display a calendar to the user and highlight the dates that have action items. Is this possible? Or is this...
4
by: mimo | last post by:
Hi, I trying to develop an application that will have a calendar control that will allow me to put hyperlinks in the days of the calendar. And I need to be able to do this in a day, week, and...
2
by: saloom | last post by:
Hi i created a calendar using the active xcontrols from the tools menu.I want the back color of the box containing the date to change based on the value of a field in the table at that specific...
0
by: DolphinDB | last post by:
The formulas of 101 quantitative trading alphas used by WorldQuant were presented in the paper 101 Formulaic Alphas. However, some formulas are complex, leading to challenges in calculation. Take...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
0
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.