Hi all,
Note: I'm very much a perfectionist 
I'm never happy with the way I work with ASP and files, for example I never know if when making comments I should type them like:
'Comment text
OR
' Comment text
Also when making big comments just like the copyright notice in web wiz guide applications, I don't know whether this looks better:
'********************
'** adsdasdasdasadasdsad
'** sadsdasdasdasd
'**********************
Than this:
'#############################
'## lkjadhlasjdlasjidlasidjoasijd
'## sjdhsldhjakdjhaskjdh
'#############################
After trying to work out what the best practice for that, I don't know what’s the best for naming conventions e.g.
incSendEmails.asp OR inc_send_emails.asp OR send_emails_inc.asp OR sendEmailsInc.asp
When I have files that are for reusable code should I call them code_bla.asp or maybe when I use files that are just functions should i call them just normal name or should I call them fcn_bla.asp.
Last Question: Is there like 20 clear ASP guidelines everybody should try to abide by to stay in good practice?? I know things like Option Explicit and declaring variables at the top of pages etc
Please help 