devxlogo

Passing a Date With the Query String

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.

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

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.

About Our Journalist