Click here to Skip to main content
15,911,785 members
Home / Discussions / Database
   

Database

 
QuestionDatabase Deployment/Version updates in unison with source code Pin
dexterama26-Mar-13 6:55
professionaldexterama26-Mar-13 6:55 
AnswerRe: Database Deployment/Version updates in unison with source code Pin
Mycroft Holmes26-Mar-13 13:05
professionalMycroft Holmes26-Mar-13 13:05 
Questioncertain rows to column Pin
Richard.Berry10025-Mar-13 18:26
Richard.Berry10025-Mar-13 18:26 
AnswerRe: certain rows to column Pin
Mycroft Holmes26-Mar-13 1:14
professionalMycroft Holmes26-Mar-13 1:14 
GeneralRe: certain rows to column Pin
Richard.Berry10027-Mar-13 2:30
Richard.Berry10027-Mar-13 2:30 
QuestionSearch in all tables for a given where condition Pin
Member 313707825-Mar-13 4:51
Member 313707825-Mar-13 4:51 
AnswerRe: Search in all tables for a given where condition Pin
Chris Quinn25-Mar-13 5:00
Chris Quinn25-Mar-13 5:00 
Questionmy sql code to sql Pin
alexpandy125-Mar-13 0:30
alexpandy125-Mar-13 0:30 
AnswerRe: my sql code to sql Pin
Marco Bertschi25-Mar-13 1:52
protectorMarco Bertschi25-Mar-13 1:52 
AnswerRe: my sql code to sql Pin
Bernhard Hiller25-Mar-13 2:08
Bernhard Hiller25-Mar-13 2:08 
QuestionSQL SERVER R2 set mode Pin
kornkimhour24-Mar-13 17:44
kornkimhour24-Mar-13 17:44 
AnswerRe: SQL SERVER R2 set mode Pin
Mycroft Holmes24-Mar-13 19:17
professionalMycroft Holmes24-Mar-13 19:17 
AnswerRe: SQL SERVER R2 set mode Pin
Sandeep Mewara24-Mar-13 19:23
mveSandeep Mewara24-Mar-13 19:23 
Questionwhat is the database connectivity Pin
mmmickyyy24-Mar-13 3:35
mmmickyyy24-Mar-13 3:35 
AnswerRe: what is the database connectivity Pin
Sandeep Mewara24-Mar-13 5:45
mveSandeep Mewara24-Mar-13 5:45 
AnswerRe: what is the database connectivity Pin
Maciej Los24-Mar-13 7:26
mveMaciej Los24-Mar-13 7:26 
Questiondisplay booked dates in red color in calender Pin
Member 870181324-Mar-13 3:07
Member 870181324-Mar-13 3:07 
AnswerRe: display booked dates in red color in calender Pin
Pallavi Waikar24-Mar-13 4:34
Pallavi Waikar24-Mar-13 4:34 
GeneralRe: display booked dates in red color in calender Pin
Member 870181325-Mar-13 7:58
Member 870181325-Mar-13 7:58 
GeneralRe: display booked dates in red color in calender Pin
Pallavi Waikar25-Mar-13 17:50
Pallavi Waikar25-Mar-13 17:50 
GeneralRe: display booked dates in red color in calender Pin
Member 870181325-Mar-13 20:58
Member 870181325-Mar-13 20:58 
GeneralRe: display booked dates in red color in calender Pin
Pallavi Waikar25-Mar-13 22:01
Pallavi Waikar25-Mar-13 22:01 
is it possible to check e.Cell.ForeColor in if then ur problem may solve.. try it for example
and u have store this booked dates in database ..use this link for help http://msdn.microsoft.com/en-us/library/ms228044(v=vs.90).aspx[^]
C#
protected void Calendar1_DayRender(object sender, DayRenderEventArgs e)
{
//do databse connectivity 
//run while loop store this fromdate and todate in two variable
//do same thing as u have done to display in red fore
if (e.Day.Date < DateTime.Today)
{

e.Day.IsSelectable = false;
e.Cell.ForeColor = System.Drawing.Color.Gray;
}
else
{
if(e.Cell.ForeColor != System.Drawing.Color.Red)
e.Cell.ForeColor = System.Drawing.Color.Green;
}
if (e.Day.Date >= FromDate && e.Day.Date <= ToDate)
{
e.Cell.ForeColor = System.Drawing.Color.Red;
}
}


modified 26-Mar-13 4:21am.

QuestionDB Desing Check Pin
hamid-shrk23-Mar-13 22:40
hamid-shrk23-Mar-13 22:40 
AnswerRe: DB Desing Check Pin
Jörgen Andersson24-Mar-13 0:47
professionalJörgen Andersson24-Mar-13 0:47 
AnswerRe: DB Desing Check Pin
Mycroft Holmes24-Mar-13 2:19
professionalMycroft Holmes24-Mar-13 2:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.