asp.net Calendar source code in C#
-
Hi dears, Im looking for an asp.net Calendar ( not a .dll) source code in C# (or vb) Do you have any idea to find it ? thx, .
-
Hi dears, Im looking for an asp.net Calendar ( not a .dll) source code in C# (or vb) Do you have any idea to find it ? thx, .
hi, This code is to select a date from a calendar control. I hope so it might be use for ur need. protected void Calendar1_SelectionChanged(object sender, EventArgs e) { string ddate; DateTime aDate = Calendar1.SelectedDate; ddate = aDate.DayOfWeek.ToString(); string todate = aDate.ToShortDateString(); Response.Write(todate); }
Hara
-
hi, This code is to select a date from a calendar control. I hope so it might be use for ur need. protected void Calendar1_SelectionChanged(object sender, EventArgs e) { string ddate; DateTime aDate = Calendar1.SelectedDate; ddate = aDate.DayOfWeek.ToString(); string todate = aDate.ToShortDateString(); Response.Write(todate); }
Hara
I looked for an asp.net calendar control source code , not codes to how get date from a calendar ....
-
Hi dears, Im looking for an asp.net Calendar ( not a .dll) source code in C# (or vb) Do you have any idea to find it ? thx, .
why do u want code when u have calendra contrl there in asp.net. U can make a aspx page and put a calendra on it and open this aspx page using javascript whereever u want.
Bajrang Singh Using .net 2.0 (VS2005)
-
why do u want code when u have calendra contrl there in asp.net. U can make a aspx page and put a calendra on it and open this aspx page using javascript whereever u want.
Bajrang Singh Using .net 2.0 (VS2005)
I need source code to change somethings. I want to create a calendar with Shamsi(persian) date format, so I have to make some changes in calendar source code....