Click here to Skip to main content
15,883,908 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Disable save as from File menu Pin
Rutvik Dave13-Mar-09 6:58
professionalRutvik Dave13-Mar-09 6:58 
AnswerRe: Disable save as from File menu Pin
Vasudevan Deepak Kumar13-Mar-09 22:24
Vasudevan Deepak Kumar13-Mar-09 22:24 
QuestionQuery on page tracking Pin
MT_shyama13-Mar-09 3:29
MT_shyama13-Mar-09 3:29 
AnswerRe: Query on page tracking Pin
Rutvik Dave13-Mar-09 6:52
professionalRutvik Dave13-Mar-09 6:52 
QuestionUsing asp.net website and its associated class library through visual source safe. Pin
hozsam13-Mar-09 2:46
hozsam13-Mar-09 2:46 
AnswerRe: Using asp.net website and its associated class library through visual source safe. Pin
hemant.kaushal13-Mar-09 4:41
hemant.kaushal13-Mar-09 4:41 
GeneralRe: Using asp.net website and its associated class library through visual source safe. Pin
hozsam13-Mar-09 17:49
hozsam13-Mar-09 17:49 
QuestionSharePoint And Calendar Control: cannot select anything Pin
Denis Sabic13-Mar-09 2:27
Denis Sabic13-Mar-09 2:27 
Hi,

i try to use the Calendar control in a SharePoint-Webpart. Everything looks fine, except that i cannot use any button within the control or select any date.

I create an instance of the calendar within the CreateChildControls-EventHandler, I set my styles in the PreRender-Eevent, and render the Calendar.

Calendar calendarControl;

protected override void CreateChildControls()
{
calendarControl = new Calendar();
this.Controls.Add(calendarControl);
SetStyles();
}

public override void RenderControl(HtmlTextWriter writer)
{
calendarControl.RenderControl(writer);
}

private void SetStyles()
{
calendarControl.Style.Add("vertical-align", "middle");
calendarControl.BackColor = Color.WhiteSmoke;
calendarControl.NextMonthText = "Next";
calendarControl.PrevMonthText = "Prev";
calendarControl.Style.Add("float", "left");
calendarControl.Style.Add("margin-right", "30px");
calendarControl.TodayDayStyle.BackColor = Color.LightBlue;
calendarControl.SelectorStyle.BackColor = Color.Wheat;
calendarControl.DayRender += new DayRenderEventHandler(calendarControl _DayRender);
}

protected void calendarControl_DayRender(object sender, DayRenderEventArgs e)
{
if(e.Day.IsOtherMonth)
e.Day.IsSelectable = false;
else
e.Day.IsSelectable = true;
}

Any Ideas why this does not work?
Questionhow to add sms gateway and its webservices to an asp.net application Pin
premprakashbhati13-Mar-09 2:05
premprakashbhati13-Mar-09 2:05 
AnswerRe: how to add sms gateway and its webservices to an asp.net application Pin
Rutvik Dave13-Mar-09 7:01
professionalRutvik Dave13-Mar-09 7:01 
AnswerRe: how to add sms gateway and its webservices to an asp.net application Pin
Vasudevan Deepak Kumar13-Mar-09 22:26
Vasudevan Deepak Kumar13-Mar-09 22:26 
Questionpopup window Pin
venkata saibabu13-Mar-09 1:51
venkata saibabu13-Mar-09 1:51 
AnswerRe: popup window Pin
Abhijit Jana13-Mar-09 2:34
professionalAbhijit Jana13-Mar-09 2:34 
GeneralRe: popup window Pin
venkata saibabu13-Mar-09 22:30
venkata saibabu13-Mar-09 22:30 
AnswerRe: popup window Pin
Chetan.visodiya13-Mar-09 2:44
Chetan.visodiya13-Mar-09 2:44 
AnswerRe: popup window Pin
Denis Sabic13-Mar-09 2:47
Denis Sabic13-Mar-09 2:47 
Questionget gridview row values on rowcommand event Pin
foryou13-Mar-09 1:16
foryou13-Mar-09 1:16 
QuestionHow to pass parameters to a stored procedure using 'in' keyword Pin
Nekkantidivya13-Mar-09 1:04
Nekkantidivya13-Mar-09 1:04 
AnswerRe: How to pass parameters to a stored procedure using 'in' keyword [modified] Pin
Spunky Coder13-Mar-09 1:35
Spunky Coder13-Mar-09 1:35 
QuestionDatetime? Pin
Karthick_gc13-Mar-09 0:04
Karthick_gc13-Mar-09 0:04 
AnswerRe: Datetime? Pin
Spunky Coder13-Mar-09 0:35
Spunky Coder13-Mar-09 0:35 
GeneralRe: Datetime? Pin
Karthick_gc13-Mar-09 0:43
Karthick_gc13-Mar-09 0:43 
GeneralRe: Datetime? Pin
Spunky Coder13-Mar-09 1:07
Spunky Coder13-Mar-09 1:07 
AnswerRe: Datetime? Pin
Ashfield13-Mar-09 2:21
Ashfield13-Mar-09 2:21 
QuestionLogout Problem in forms authentication Pin
SreejithAchutan12-Mar-09 22:35
SreejithAchutan12-Mar-09 22:35 

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.