In My Asp.net webpage I need to display today\'s date into one of the textbox , so in my form load I wrote the following code
textbox1.text = System.DateTi
Have you tried the following?:
textbox1.text = System.DateTime.Today.ToString("MM/dd/yy");
Be aware that 2 digit years could be bad in the future...