Opening Html File With Query String
Is it possible to load a local HTML file with a query string? I'm using Process.Start, but that fails because appending ?querystring=test to the end of the filename makes it search
Solution 1:
It's not possible because query strings are a part of HTTP protocol and so they only work when a file is served from a web server. A local HTML file is simply read from the file system.
Post a Comment for "Opening Html File With Query String"