I have a textbox that should inserting a date in dd/MM/yyyy format. What only I can find and use is smalldatetime or datetime. I pick smalldatetime and the data displayed was like for example 01/07/2011 12:00:00 AM. Any codes involved to sort this out to be only displaying 01/07/2011 (without time)?
SqlJobMaster.InsertParameters["StartDate"].DefaultValue = txtStartDate.Text.ToString();
ASP.NET
Start Date