1
vote
What do you do when you’re faced with an “I have no idea how to do this” programming project?
If you honestly can't see yourself being able to do it, then C or B.
B maybe best from a career standpoint, but be ready to justify your assertion of not enough time.
It will mean, le …
2
votes
Do you generate nicely formatted HTML?
When I'm putting together templates for a site, I start with them all nicley formatted and indented until I get it right, keep a copy of that, and then crunch the hell out of them, not quite down …
1
vote
Secure name for the admin area URL of a site?
Sometimes I use things like /controlpanel/ or similar, and sometimes /admin/ or /_admin/, it doesn't hurt to use something hard to guess, but your security should not in any way rely on that. …
1
vote
What are the best and worst features of your preferred web framework?
ASP.NET 2
Good:
c#, caching, Visual Studio, master pages, user controls, oo if you want it, metric crapload of built in classes, just so damn flexible...
Bad:
viewsta …
1
vote
How is web programming different from back-end programming?
One consideration (amongst many) with web programming is that users won't just be stupid (not that they all are, but you always have to factor that in), they will sometimes (assume always) be downr …
0
votes
Getting project web page names as an enumeration in asp.net.
Another option, that I have looked at but not tried out yet (might next week tho'):
http …
0
votes
Put javascript in one .js file or break it out into multiple .js files?
I would pretty much concur with what bigmattyh said, it does depend.
As a general rule, I try to aggregate the script files as much as possible, but if you have some scripts that are only …
1
vote
What is the quickest way from a concept to a site?
From the perspective of an asp.net developer, and not wanting to incite a holy war, web forms designer in visual studio, not really free.
Use an ORM like SubSonic (or similar) to generat …
0
votes
Is there a generic way to see what is a website running on ?
No failsafe way to do it.
There is a firefox plugin called Server Spy, which will interpret the headers and give you a neat little indicator in the status bar, but if someone has changed t …
