In our code we have query string variables with very short names such as cId, iId, isA and u. It is very hard to tell what this variables are from their names. I want to use more descriptive names such as customerId, itemId, isAnonymous and user.

I want to know the disadvantages of using long names in query strings if there are any.

Thanks

link|improve this question

3  
Not related to variable name length, but what happens if users change the variable values to those of other customers or items? Do they get to see other customer's data? That is a serious security lapse you should address. – Dour High Arch Apr 26 '11 at 22:16
feedback

3 Answers

up vote 1 down vote accepted

I would keep variable names short, as the limit tends to be about 2,047 characters, but other browsers can handle more. There's a good explanation here: http://www.asp101.com/tips/index.asp?id=102

Just because Nija sees 4,000 in one of his, is definitely not a good idea to assume that will work for you.

link|improve this answer
feedback

Another argument I've heard for short variable names in the query string is to somewhat obfuscate the variables to try to prevent your users from "getting creative" and trying to access stuff they shouldn't by editing the URL. I'm not sure I agree with this unless you're doing something crazy like setting IsAdminUser=false somewhere in the URL - but if you're doing that you may have deeper issues with your code. ;)

link|improve this answer
2  
Security through obscurity is never a good thing. And I think we'd all agree that the querystring feels dirty. :) – John Batdorf Apr 26 '11 at 22:18
Absolutely. I did say I wasn't convinced by the argument, but I was putting it out there for the OP to make his own mind up about it. :) – ZombieSheep Apr 26 '11 at 22:22
feedback

You have a limit of 255 characters for GET operations, so you really need to be sparing in your names there. For POST operations, there's no need to worry about verbosity.

link|improve this answer
4  
Maybe a bit more than 255. support.microsoft.com/kb/208427 – Vincent Ramdhanie Apr 26 '11 at 20:03
I have analytics data that comes at almost 4000 characters (encoded). It's a bug (in my data sending), but it's still ~4K in a GET request. – Nija Apr 26 '11 at 21:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.