Click here to Skip to main content
15,925,081 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questioncan a add a drop down control to calender control? Pin
raghvendrapanda11-Nov-08 1:29
raghvendrapanda11-Nov-08 1:29 
AnswerRe: can a add a drop down control to calender control? Pin
Brij11-Nov-08 3:21
mentorBrij11-Nov-08 3:21 
For this you have to customise lika below

Add a row above to calender control and add two dropdown in the that row one for month and another for year and on OnSelectedIndexChanged event of both set the calendar control Selected value like

int Year = Convert.ToInt32(ddlCalYear.SelectedItem.Text);
int Month = ddlCalMonth.SelectedIndex + 1;
myCalendar.VisibleDate = new DateTime(Year, Month, 1);

Cheers!!
Brij

GeneralRe: can a add a drop down control to calender control? Pin
raghvendrapanda11-Nov-08 18:55
raghvendrapanda11-Nov-08 18:55 
QuestionMachine Key error in Web Application Pin
ArunVijay11-Nov-08 0:57
ArunVijay11-Nov-08 0:57 
AnswerRe: Machine Key error in Web Application Pin
AhsanS11-Nov-08 1:17
AhsanS11-Nov-08 1:17 
GeneralRe: Machine Key error in Web Application Pin
ArunVijay11-Nov-08 1:48
ArunVijay11-Nov-08 1:48 
Questionhow to access data from a webpage using RSS Pin
sarang12111-Nov-08 0:50
sarang12111-Nov-08 0:50 
AnswerRe: how to access data from a webpage using RSS Pin
AhsanS11-Nov-08 1:19
AhsanS11-Nov-08 1:19 
QuestionMaster page Pin
NadaAbuGamel11-Nov-08 0:23
NadaAbuGamel11-Nov-08 0:23 
AnswerRe: Master page Pin
Brij11-Nov-08 1:13
mentorBrij11-Nov-08 1:13 
QuestionMaster page in ASP.Net Pin
salma ahmed10-Nov-08 23:34
salma ahmed10-Nov-08 23:34 
GeneralRe: Master page in ASP.Net Pin
Arun Jacob11-Nov-08 0:22
Arun Jacob11-Nov-08 0:22 
Questionnavbar in masterpage and different grids in contentpages and ajax Pin
yasfried10-Nov-08 23:14
yasfried10-Nov-08 23:14 
AnswerRe: navbar in masterpage and different grids in contentpages and ajax Pin
Arun Jacob11-Nov-08 0:15
Arun Jacob11-Nov-08 0:15 
GeneralRe: navbar in masterpage and different grids in contentpages and ajax Pin
yasfried11-Nov-08 0:42
yasfried11-Nov-08 0:42 
Questionhow to access data from one site to another Pin
sarang12110-Nov-08 22:35
sarang12110-Nov-08 22:35 
AnswerRe: how to access data from one site to another Pin
eyeseetee10-Nov-08 22:43
eyeseetee10-Nov-08 22:43 
QuestionRe: how to access data from one site to another Pin
sarang12110-Nov-08 22:48
sarang12110-Nov-08 22:48 
AnswerRe: how to access data from one site to another Pin
Ravi_2110-Nov-08 23:28
Ravi_2110-Nov-08 23:28 
GeneralRe: how to access data from one site to another Pin
sarang12111-Nov-08 0:33
sarang12111-Nov-08 0:33 
GeneralRe: how to access data from one site to another Pin
Brij11-Nov-08 4:09
mentorBrij11-Nov-08 4:09 
GeneralRe: how to access data from one site to another Pin
sarang12111-Nov-08 15:59
sarang12111-Nov-08 15:59 
AnswerRe: how to access data from one site to another Pin
N a v a n e e t h10-Nov-08 22:48
N a v a n e e t h10-Nov-08 22:48 
QuestionThe underlying connection was closed: An unexpected error occurred on a receive Pin
reogeo200810-Nov-08 22:24
reogeo200810-Nov-08 22:24 
AnswerRe: The underlying connection was closed: An unexpected error occurred on a receive Pin
AhsanS11-Nov-08 1:21
AhsanS11-Nov-08 1:21 

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.