Maximus007
Technical User
I have a string that holds data and I want to remove the dash. It displays a day 6-22-2005
code:
Dim strDisplayDate
strDisplayDate= request.form("Date")
response.write (Replace(Cstr(strDisplayDate), "-" , "")
and nothing happens. It remains the same and the dashes are not remove.
code:
Dim strDisplayDate
strDisplayDate= request.form("Date")
response.write (Replace(Cstr(strDisplayDate), "-" , "")
and nothing happens. It remains the same and the dashes are not remove.