Reputation: 29533
I have recently started developing in ASP.NET(C#/VB.NET) Web Forms. Apart from Notepad++ what other text editor is there for ASPX files?
I'm asking because Notepad++ gets rid of all the nice colours and formatting available for html files
EDIT
Sorry should have said I've been told apparently not to install Microsoft Visual Studio on the server.
Upvotes: 2
Views: 1403
Reputation: 1296
This site might help you find the resources you need. Not sure if it's all free stuff so have a look around: C# Tools, a collection of development tools and utilities for C# programming.
Notepad 2 is quite useful!
Upvotes: 2
Reputation: 250822
You can try out Visual Studio Express, which is a cut-down version of Visual Studio that should do exactly what you want.
http://www.microsoft.com/express/Web/
You can always upgrade to a better version later!
Upvotes: 0
Reputation: 60987
You can install the Visual Studio Web Developer edition, it's free and may be used in commercial projects. I know this isn't your typical light-weight text editor but if you're doing web development on the production server why not do it with the proper tools?
However, you might wanna be careful with the installation, Visual Studio will by default, install a SQL Server express instance (you can't opt-out of it). You might wanna disable/uninstall this after the installation is complete, as it doesn't really belong on a web server.
Upvotes: 1