Just tell me How to retirve text from a text Box and
cast it as a date.All my Attempts are Failing
I tried this
TextBox1.Text = FormatDateTime(TextBox1.Text,
DateFormat.ShortDate)
Dim ds As date =
FormatDateTime(CDate(TextBox1.Text),
DateFormat.GeneralDate)
Response.Write(DateAdd(DateInterval.Day, 1,
ds))
It gives the same err cant Convert
string to Date
Value.