devxlogo

Passing a Date With the Query String

Question:

Can I pass a date with the query string? Will the slashes cause a problem in this example?

 testing.asp?date=03/01/00

Answer:

Yes they will. You will need to “encode” the data before passing it within the “URL”. To do that, use the Server.URLEncode function:

testing.asp?date=<%= Server.UrlEncode("03/01/00") %>

Make sure you are only “UrlEncoding” your values, and not the entire querystring itself. Do not try to encode the question mark (?), the equal to (=), and the ampersand (&) characters that make up a valid query string.

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Seven Service Boundary Mistakes That Create Technical Debt

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.