File naming conflict - how to name files?

notfred

Lifer
Feb 12, 2001
38,241
4
0
Ok, so I'm writing an ASP.NET web application. I have files named for classes that are named with mixed case, like this: MyClassName.aspx, which is standard.

However, these files are also file names for web pages, which are lowercase by convention.

So, do I use MyClassName.aspx, or myclassname.aspx?

What would you do.
 

jkoon

Member
Apr 12, 2005
158
0
0
I voted lowercase, but my only real reasoning for this decision was it is better to make things easier for the end user and the programmer deal with the headache rather than the other way around. So I am going to assume that the lower case file name is more likely to be typed out by the user than a mixed case.
 

notfred

Lifer
Feb 12, 2001
38,241
4
0
Originally posted by: jkoon
I voted lowercase, but my only real reasoning for this decision was it is better to make things easier for the end user and the programmer deal with the headache rather than the other way around. So I am going to assume that the lower case file name is more likely to be typed out by the user than a mixed case.

In all likelyhood, most people will never type out these addresses anyway, they'll just type the domain name and them click on a link from that page, either that or they'll bookmark specific pages.