For your information, ? character is used to separate parameter string in URL. These parameters can be processed with scripting (both server- and clientside).
But of course, you're allowed to use parameter string to make your URL fancier, it doesn't affect on functionality in any way.
Originally posted by AshleyQuick Can you give an example? Also, where would I need to place the files? I know nothing about .asp. :/
Ash
ASP is a server-side language from Microsoft, which is scripted with VBScript and JScript. To be able to use ASP, your server has to support ASP (Microsoft's PWS, IIS, Apache+additional package..etc).
You can search for tutorials about ASP and ASP.NET from various locations. If you need free webspace with ASP support, visit http://www.brinkster.com .
Tutorials & references I use in problematic cases :
W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.
It will make no difference in the funcionality of your pages... but to truly use the QueryString to your full advantage - you'll need to learn some server side language... (ASP, PHP, Perl, Java, etc.)
Originally posted by whammy Heck if I was going to append a useless querystring to a URL I would probably make it completely random... just to make it look more l33t! (LOL).
Actually one cool way to try and fool hackers (assuming you're using REAL querystrings) is to figure out your own way of encoding querystrings...
You could do a simple 'encode' by just pushing each character up above the 128 ASCII table. It would be easy to someone to break if they knew thats what you were doing, but to the uninformed it looks nifty.
Comment