ASP - Removing double quotes from a string

I have an ASP page and it has so many date variables.

myvariable = FormatParameter("EndDate")

EndDate - "01/10/2001"

How to remove double quotes from a date variable? so it could be 01/10/2001.

I can do this in .NET, but could not find a way to do this in ASP.

Any help is greatly appreciated.

+5
source share
1 answer
myvariable = Replace(FormatParameter("EndDate"), """", "")
+9
source

All Articles