How can i can cause items/events/task in my calendar to be links?

g_r_a_robinson

Regular
Joined
Jan 13, 2004
Messages
71
I have a calendar control that displays a bunch of events and tasks. I was wondering if theres some way that I can cause these events to be links at which I can click and it will return a more in depth info regarding displayed events/tasks etc.
 
So would this

strEvents.Append("<br />" + dueTimeString + "<br />" + Consultant + "<br>" + Client + "<br>" + JobTitle + "<br>" + JobNo + "<br><br>");


be

strEvents.Append("<br /><href>" + dueTimeString + "<br />" + Consultant + "<br>" + Client + "<br>" + JobTitle + "<br>" + JobNo + "<br><br>");

is this what you meant
 
This is what I did, but I didn't get a link. In fact the href appeared in the html itself. Looking at my code is there any obvious reason?

strEvents.Append("<br /><" + due_Start_Time_String + "<br />" + due_Finish_Time_String + "<href=" + JobTitle + ">Here</a>" + JobNo + "<br><br>");
 
I did this and still got nothing:

if (eventdate.Equals(e.Day.Date))
strEvents.Append("<br>" + due_Start_Time_String + "<br>" + due_Finish_Time_String + "<href= + JobTitle + >Here</a>" + JobNo + "<br><br>");
 
Back
Top