How can I change the date format of a text box in asp net?
How can I change the date format of a text box in asp net? You can just convert it on the server side when you insert it. DateTime theDate=DateTime. ParseExact(TextBox1. Text, “yyyy-MM-dd”, System. How do I change the date format in a text box? Value = Format(Me. txtDate. Value, “yyyy/mm/dd”) You can also set the […]