Click here to Skip to main content
16,014,591 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: WEB SERVICE DEPLOYMENT Pin
Christian Graus1-Aug-07 22:36
protectorChristian Graus1-Aug-07 22:36 
AnswerRe: WEB SERVICE DEPLOYMENT Pin
N a v a n e e t h1-Aug-07 22:50
N a v a n e e t h1-Aug-07 22:50 
AnswerRe: WEB SERVICE DEPLOYMENT Pin
Bino B3-Aug-07 7:24
Bino B3-Aug-07 7:24 
QuestionBased on html control,server control visible..., Pin
Member 38798811-Aug-07 21:56
Member 38798811-Aug-07 21:56 
AnswerRe: Based on html control,server control visible..., Pin
Christian Graus1-Aug-07 22:12
protectorChristian Graus1-Aug-07 22:12 
QuestionDataGrid problem Pin
Rahul Babu1-Aug-07 21:32
Rahul Babu1-Aug-07 21:32 
AnswerRe: DataGrid problem Pin
Imran Khan Pathan1-Aug-07 22:01
Imran Khan Pathan1-Aug-07 22:01 
QuestionCalendar changing year Pin
J Liang1-Aug-07 21:26
J Liang1-Aug-07 21:26 
Hi,

I am having a problem with the calendar in asp.net.

Here is the situation.

I have a textbox which will show the date user selected, a button to get the calendar out, the calendar itself and a drop down list which will change the year of the calendar.

It works well that the drop down list is able to change the year of the calendar by:
if (Calendar1.Visible == true)
{
DateTime dtNewDate;

dtNewDate = DateTime.Parse(Convert.ToInt16(this.Calendar1.SelectedDate.Month) + "/" +Convert.ToInt16(this.Calendar1.SelectedDate.Day) + "/" + Convert.ToInt16(ddYear.SelectedItem.Text));

Calendar1.TodaysDate = dtNewDate;
}


The problem is when I change the month of the calendar to another month, when I onSelectedChanged on the drop down list, it doesn't change the year for me any more.

I'd been wondering what was wrong. Btw, I am putting the calendar, textbox and button in the updatePanel and the drop down out side the update panel.

Thanks in advance.

J Liang
Questionhow to pass data to activeX Pin
totocaster1-Aug-07 20:59
totocaster1-Aug-07 20:59 
AnswerRe: How to validate DropDown list Pin
N a v a n e e t h1-Aug-07 20:59
N a v a n e e t h1-Aug-07 20:59 
GeneralRe: How to validate DropDown list Pin
A.Muthunagai1-Aug-07 21:02
A.Muthunagai1-Aug-07 21:02 
QuestionHow to write in registry Pin
FishiFishi1-Aug-07 20:50
FishiFishi1-Aug-07 20:50 
AnswerRe: How to write in registry Pin
Hareesh.P.R1-Aug-07 22:27
Hareesh.P.R1-Aug-07 22:27 
AnswerRe: How to write in registry Pin
Vasudevan Deepak Kumar1-Aug-07 22:31
Vasudevan Deepak Kumar1-Aug-07 22:31 
GeneralRe: How to write in registry Pin
Bino B3-Aug-07 7:33
Bino B3-Aug-07 7:33 
QuestionUnable to connect to the remote server ---> System.Net.Sockets.SocketException: A socket operation encountered a dead network Pin
Alberto Bar-Noy1-Aug-07 20:29
Alberto Bar-Noy1-Aug-07 20:29 
AnswerRe: Unable to connect to the remote server ---> System.Net.Sockets.SocketException: A socket operation encountered a dead network Pin
Vasudevan Deepak Kumar1-Aug-07 22:33
Vasudevan Deepak Kumar1-Aug-07 22:33 
GeneralRe: Unable to connect to the remote server ---> System.Net.Sockets.SocketException: A socket operation encountered a dead network Pin
Alberto Bar-Noy2-Aug-07 0:02
Alberto Bar-Noy2-Aug-07 0:02 
Questionhow to print a form in asp.net Pin
rahul.net111-Aug-07 20:23
rahul.net111-Aug-07 20:23 
AnswerRe: how to print a form in asp.net Pin
Alberto Bar-Noy1-Aug-07 20:34
Alberto Bar-Noy1-Aug-07 20:34 
GeneralRe: how to print a form in asp.net Pin
rahul.net111-Aug-07 20:39
rahul.net111-Aug-07 20:39 
GeneralRe: how to print a form in asp.net Pin
Alberto Bar-Noy1-Aug-07 21:06
Alberto Bar-Noy1-Aug-07 21:06 
GeneralRe: how to print a form in asp.net Pin
rahul.net111-Aug-07 21:16
rahul.net111-Aug-07 21:16 
Questionhow to clear browser history Pin
Dhyanga1-Aug-07 20:16
Dhyanga1-Aug-07 20:16 
AnswerRe: how to clear browser history Pin
N a v a n e e t h1-Aug-07 20:50
N a v a n e e t h1-Aug-07 20:50 

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.