Search Results

9
votes

What should a developer know before building a public web site?

Valid (X)HTML - with the appropriate tags. No broken links (See above about relative links) …
0
votes

One Update Panel vs. Multiple Update Panels

Not sure about the best practices, but in my experience multiple panels work well, and reduce the amount of data being sent at one time - resulting in an increase in response time overall. Multiple …
0
votes

What’s the best way to organize CSS rules?

I use several techniques: Group by #ID / Class Comment major blocks, using an underscore for easy searching (/* IDName /) Using CSS shorthand helps keep t …
0
votes

How do you start building an ASP.NET web app?

I start with the functional UI, moving from there to the business layer and db (usually in tandem to start with). Design is normally provided in some respect by the client, so I try to apply that e …
0
votes

As an ASP.NET Web Developer using Visual Studio, should I have IIS installed?

Ideally your test server should mirror your production server. That should go without saying. In my opinion, your dev environment should come as close as possible, while fulfilling your needs first …