What tools do you use to develop web applications in Asp.net or Asp.net mvc?
I recently started working on web applications and I am doing it with ASP.Net MVC. I have tested some open source applications.
Some of the views I checked have a lot of markup code, so I was wondering if there are other tools used to render and design views in a more visual way.
Thanks.
a source to share
Never use WYSIWYG HTML Editors. HTML is easy to learn, not much to offer as it is quite small (yet) and this is just what you need to know (from my point of view) HTML is kind of programmers piece 101. If you want to keep your HTML small and easy to read (and reusable) just use HTML helpers ( Read about them )
So there are great resources for learning HTML, here are some great resources. IMHO the best one ...
W3Schools is a great tutorial and even the best link
a source to share
Visual Studio should be your one-stop development environment.
The full version costs a few hundred, but you can get the Express version for free.
The latest versions can be downloaded here:
via the web platform installer.
Its functionality and pretty much all tutorials and books you can buy / get online will cover it with Visual Studio, so if you're just starting out, then you should do yourself a favor and learn it this way first.
Plus what employers expect you to be able to use.
a source to share