Is it easy to control HTML/CSS code when using ASP.NET?
Prepare yourself for a shock, losing control was the main thing that I found hard to confront when I first attacked ASP.NET. Of course, there is no reason why you can’t generate all your own html/css/javascript but that’s not the .NET way. My advice is to take advantage of the existing controls and where they do not perform as you require then derive your own control Class from them or write another from scratch. If, like me, you habitually View Source then you are going to see a mess. You might be able to tidy things up a bit by implementing Delegates to do the rendering for you.