473,397 Members | 1,974 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,397 software developers and data experts.

Calendar Control Recommendation?

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, load the calendar. Users
would ideally view an entire month, and a short description of an event
within a specific date. More than one event will be listed for some dates,
with a brief description displayed in the calendar. I'd like to enable users
to click on any event description to get more detailed information about the
event.

I can build this calendar and related functionality from scratch, however
I'd prefer to not reinvent. I'd like recommendations for providing this
functionality (3rd party controls, sample projects, anything to get a jump
start on this).

Thanks in advance...

Jeff
Nov 17 '05 #1
6 1625
The Web Form Calendar control should work very nicely for this. I use this
control for my son's cub scout pack:
http://pack96.org/calendar/PackCalendar.aspx. I get the data from a DB and
populate the calendar via its DayRender event.

"Jeff S" <Je***@asdf.net> wrote in message
news:%2*****************@TK2MSFTNGP12.phx.gbl...
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, load the calendar. Users
would ideally view an entire month, and a short description of an event
within a specific date. More than one event will be listed for some dates,
with a brief description displayed in the calendar. I'd like to enable users to click on any event description to get more detailed information about the event.

I can build this calendar and related functionality from scratch, however
I'd prefer to not reinvent. I'd like recommendations for providing this
functionality (3rd party controls, sample projects, anything to get a jump
start on this).

Thanks in advance...

Jeff

Nov 17 '05 #2
That's great!.. just the sort of thing I need. Did you use the calendar
control that ships with Visual Studio.NET 2003?

-Jeff

"Scott M." <s-***@badspamsnet.net> wrote in message
news:eU**************@TK2MSFTNGP09.phx.gbl...
The Web Form Calendar control should work very nicely for this. I use this control for my son's cub scout pack:
http://pack96.org/calendar/PackCalendar.aspx. I get the data from a DB and populate the calendar via its DayRender event.

"Jeff S" <Je***@asdf.net> wrote in message
news:%2*****************@TK2MSFTNGP12.phx.gbl...
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, load the calendar. Users
would ideally view an entire month, and a short description of an event
within a specific date. More than one event will be listed for some dates, with a brief description displayed in the calendar. I'd like to enable

users
to click on any event description to get more detailed information about

the
event.

I can build this calendar and related functionality from scratch, however I'd prefer to not reinvent. I'd like recommendations for providing this
functionality (3rd party controls, sample projects, anything to get a jump start on this).

Thanks in advance...

Jeff


Nov 17 '05 #3
Yes, that's the "Web Form" (a.k.a. Server) Calendar control.
"Jeff S" <Je***@asdf.net> wrote in message
news:ej*************@tk2msftngp13.phx.gbl...
That's great!.. just the sort of thing I need. Did you use the calendar
control that ships with Visual Studio.NET 2003?

-Jeff

"Scott M." <s-***@badspamsnet.net> wrote in message
news:eU**************@TK2MSFTNGP09.phx.gbl...
The Web Form Calendar control should work very nicely for this. I use

this
control for my son's cub scout pack:
http://pack96.org/calendar/PackCalendar.aspx. I get the data from a DB

and
populate the calendar via its DayRender event.

"Jeff S" <Je***@asdf.net> wrote in message
news:%2*****************@TK2MSFTNGP12.phx.gbl...
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, load the calendar. Users would ideally view an entire month, and a short description of an event within a specific date. More than one event will be listed for some dates, with a brief description displayed in the calendar. I'd like to enable

users
to click on any event description to get more detailed information about
the
event.

I can build this calendar and related functionality from scratch, however I'd prefer to not reinvent. I'd like recommendations for providing
this functionality (3rd party controls, sample projects, anything to get a

jump start on this).

Thanks in advance...

Jeff



Nov 17 '05 #4
Hi Scott,

I have always wondered how you get a page to open something like you have
when you click on a calendar link in ur site that brings up the info in
another window.. useing that http://pack96.org/calendar/PackCalendar.aspx#
link for each one, how does this work? thanks for any info you can provide.
"Scott M." <s-***@badspamsnet.net> wrote in message
news:eU**************@TK2MSFTNGP09.phx.gbl...
The Web Form Calendar control should work very nicely for this. I use this control for my son's cub scout pack:
http://pack96.org/calendar/PackCalendar.aspx. I get the data from a DB and populate the calendar via its DayRender event.

"Jeff S" <Je***@asdf.net> wrote in message
news:%2*****************@TK2MSFTNGP12.phx.gbl...
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, load the calendar. Users
would ideally view an entire month, and a short description of an event
within a specific date. More than one event will be listed for some dates, with a brief description displayed in the calendar. I'd like to enable

users
to click on any event description to get more detailed information about

the
event.

I can build this calendar and related functionality from scratch, however I'd prefer to not reinvent. I'd like recommendations for providing this
functionality (3rd party controls, sample projects, anything to get a jump start on this).

Thanks in advance...

Jeff


Nov 17 '05 #5
In my DayRender event for the calendar, when I write data into the
particular day, I include a traditional client-side JavaScript to perform
the window.open() JavaScript call. I then write the content from my
database (for that particular day) into the newly created window.

The actual text that appears in each day of the calendar is rendered inside
of a server side label. The code looks like this:
'Get the title text for the JS popup window ready
Dim PopUpWindowTitle As String = CurrentEventName 'This comes from the DB

Dim PopupLink As String = "javascript:PopUpWindow(" & Chr(34) &
PopUpWindowTitle & Chr(34) & ", " & Chr(34) & CurrentEventDetails & Chr(34)
& ", " & Chr(34) & CurrentEventContact & Chr(34) & ", " & Chr(34) &
CurrentEventContactEmail & Chr(34) & ")"

objLabel.Text += "<BR><A HREF='#' onClick='" & PopupLink & "'>" &
CurrentEventName & "</A><BR>"

This is just a snippet, but I hope it gives you an idea.

"Brian Henry" <NO************@adelphia.net> wrote in message
news:u8*************@TK2MSFTNGP10.phx.gbl...
Hi Scott,

I have always wondered how you get a page to open something like you have
when you click on a calendar link in ur site that brings up the info in
another window.. useing that http://pack96.org/calendar/PackCalendar.aspx#
link for each one, how does this work? thanks for any info you can provide.

"Scott M." <s-***@badspamsnet.net> wrote in message
news:eU**************@TK2MSFTNGP09.phx.gbl...
The Web Form Calendar control should work very nicely for this. I use

this
control for my son's cub scout pack:
http://pack96.org/calendar/PackCalendar.aspx. I get the data from a DB

and
populate the calendar via its DayRender event.

"Jeff S" <Je***@asdf.net> wrote in message
news:%2*****************@TK2MSFTNGP12.phx.gbl...
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, load the calendar. Users would ideally view an entire month, and a short description of an event within a specific date. More than one event will be listed for some dates, with a brief description displayed in the calendar. I'd like to enable

users
to click on any event description to get more detailed information about
the
event.

I can build this calendar and related functionality from scratch, however I'd prefer to not reinvent. I'd like recommendations for providing
this functionality (3rd party controls, sample projects, anything to get a

jump start on this).

Thanks in advance...

Jeff



Nov 17 '05 #6
thanks! that explains a lot :)
"Scott M." <s-***@badspamsnet.net> wrote in message
news:up**************@TK2MSFTNGP09.phx.gbl...
In my DayRender event for the calendar, when I write data into the
particular day, I include a traditional client-side JavaScript to perform
the window.open() JavaScript call. I then write the content from my
database (for that particular day) into the newly created window.

The actual text that appears in each day of the calendar is rendered inside of a server side label. The code looks like this:
'Get the title text for the JS popup window ready
Dim PopUpWindowTitle As String = CurrentEventName 'This comes from the DB
Dim PopupLink As String = "javascript:PopUpWindow(" & Chr(34) &
PopUpWindowTitle & Chr(34) & ", " & Chr(34) & CurrentEventDetails & Chr(34) & ", " & Chr(34) & CurrentEventContact & Chr(34) & ", " & Chr(34) &
CurrentEventContactEmail & Chr(34) & ")"

objLabel.Text += "<BR><A HREF='#' onClick='" & PopupLink & "'>" &
CurrentEventName & "</A><BR>"

This is just a snippet, but I hope it gives you an idea.

"Brian Henry" <NO************@adelphia.net> wrote in message
news:u8*************@TK2MSFTNGP10.phx.gbl...
Hi Scott,

I have always wondered how you get a page to open something like you have
when you click on a calendar link in ur site that brings up the info in
another window.. useing that http://pack96.org/calendar/PackCalendar.aspx# link for each one, how does this work? thanks for any info you can

provide.


"Scott M." <s-***@badspamsnet.net> wrote in message
news:eU**************@TK2MSFTNGP09.phx.gbl...
The Web Form Calendar control should work very nicely for this. I use

this
control for my son's cub scout pack:
http://pack96.org/calendar/PackCalendar.aspx. I get the data from a DB
and
populate the calendar via its DayRender event.

"Jeff S" <Je***@asdf.net> wrote in message
news:%2*****************@TK2MSFTNGP12.phx.gbl...
> 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, load the calendar. Users > would ideally view an entire month, and a short description of an event > within a specific date. More than one event will be listed for some

dates,
> with a brief description displayed in the calendar. I'd like to
enable users
> to click on any event description to get more detailed information

about the
> event.
>
> I can build this calendar and related functionality from scratch,

however
> I'd prefer to not reinvent. I'd like recommendations for providing this > functionality (3rd party controls, sample projects, anything to get

a jump
> start on this).
>
> Thanks in advance...
>
> Jeff
>
>



Nov 17 '05 #7

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

Similar topics

0
by: Tim Graichen | last post by:
Hello, I am making use of the Active X calendar control (mscal.Calendar.7) in several places in my main form, with the following code Below is an example of the code I'm using for the...
5
by: Miguel Dias Moura | last post by:
Hello, i am trying to create a .css file with several styles and apply them to the calendar control so i can change the look of: 1. Text Type and Format (Bold, Underline, etc) 2. Background...
1
by: bill yeager | last post by:
I would like to place the currently selected date (retrieved from the database) on a calendar control which is embedded inside a datagrid. However, I can't find the ID of the control to do so....
2
by: Caesar Augustus | last post by:
First, let me start by saying my asp.net experience is still in it's infancy so please bare with me as I try to explain my situation. I have created a single page that with the use of many...
3
by: Peter | last post by:
Is there anyway to make the System.Web.UI.WebControls.Calendar to display only Month Name and Year, like: January, 2006 February, 2006 ..... .... .... ....
4
by: John Dalberg | last post by:
I would like to add a Calendar to my site. Something like airset.com is nice. It also needs to be open source so I can add to it. Any recommendation? John Dalberg
7
by: John Kotuby | last post by:
Hi all, I am trying to use a calendar server control which I have ID="Calendar1" in the source code. What I am trying to do is emulate a JavaScript calendar that was being used in an older ASP...
3
by: thorpk | last post by:
I posted this problem earlier in the month and some one decided it was better to change the subject and ask a completely different question. I am therefore reposting. I am hoping some one can...
0
by: Cirene | last post by:
I'm creating an asp.net web calendar application that will be function much like the Outlook calendar. Features include... Ability to see a month, week, day or custom view (including viewing...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.