Lower case all form names?

  • Thread starter Thread starter Ronald S. Cook
  • Start date Start date
Ronald,

As far as the physical files go, that is completely up to you. I personally
like using CamelCase for readability.

On the client-side, however, I have seen issues with certain browsers on
certain platforms that don't like uppercase letters. When referencing pages
and whatnot in links, I would use lower case.

Hope this helps,


Steve
 
Hi Ronald,

I use CamelCase for readability inside my IDE. However, when I
reference the file in my code I use lowercase letters. The primary
reason is that my automated testing software gets confused with
lowercase vs. uppercase letters.

Like most things, it primarily about personal preference and using
what works.

Tod Birdsall, MCSD for .NET
http://tod1d.net
 
Back
Top