Click here to Skip to main content
15,899,026 members
Home / Discussions / Database
   

Database

 
AnswerRe: how can a get top each event in my related table Pin
EralperYilmaz1-Apr-13 1:20
EralperYilmaz1-Apr-13 1:20 
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 
now i have been instructed to use textboxes...
now i am using the following code
protected void Calendar1_DayRender(object sender, DayRenderEventArgs e)
{if (e.Day.Date < DateTime.Today)
{

e.Day.IsSelectable = false;
e.Cell.ForeColor = System.Drawing.Color.Gray;
}
else
{
e.Cell.ForeColor = System.Drawing.Color.Green;
}
if (e.Day.Date >= FromDate && e.Day.Date <= ToDate)
{
e.Cell.ForeColor = System.Drawing.Color.Red;
}
}
protected void Button1_Click(object sender, EventArgs e)
{
FromDate = DateTime.ParseExact(txtFrom.Text, "dd/MM/yyyy", CultureInfo.InvariantCulture);
ToDate = DateTime.ParseExact(txtTo.Text, "dd/MM/yyyy", CultureInfo.InvariantCulture);
}
when i run the application the dates which user enters are appearing in red color in calender...but the pbm i am facing is i vil stop running the application & once again re-run application...this time user entered dates are not in red color....they are in green color. the same pbm i faced when i was using dropdownlist....even now also, the same issue i am getting...even when i stop & rerun the application user entered dates should appear in red color...by seeing red color in calender user comes to know that those dates are already booked...so he vil enter other dates..when the user clicks on calender image ,all past dates shoud be disabled....and booked dates in red color and rest of the dates in green color...at the bottom of the page indication is given to user that gray colored dates are not selectable,red colored dates are already booked and green colored dates are available for booking....this is the concept i am using...pls guide me how to solve my issue....
GeneralRe: display booked dates in red color in calender Pin
Pallavi Waikar25-Mar-13 22:01
Pallavi Waikar25-Mar-13 22:01 
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 

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.