Date Control
-
Hello there Is there a date control that can view only the Month and year in ASP.Net???:) Deathorites
-
Hello there Is there a date control that can view only the Month and year in ASP.Net???:) Deathorites
Oh come on - I should think it would take all of 10 minutes to build such a control yourself! Phil
-
Hello there Is there a date control that can view only the Month and year in ASP.Net???:) Deathorites
Well there is no need the have a control but its easy to create. If you want to go the simple way, just create a label field and set the text equal to the following code. [VB.Net/ASP.NET] Dim Today As Date = Date.Today lblDate.Text = Today.ToString("MMMM yyyy") RedBwoy
-
Oh come on - I should think it would take all of 10 minutes to build such a control yourself! Phil
sorry i'm just a beginner in asp.net......
-
Well there is no need the have a control but its easy to create. If you want to go the simple way, just create a label field and set the text equal to the following code. [VB.Net/ASP.NET] Dim Today As Date = Date.Today lblDate.Text = Today.ToString("MMMM yyyy") RedBwoy
Thanks for the info,i'm just a beginner in asp.net... Deathorites