Beginner
Beginner

Reputation: 29533

An text editor for aspx?

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

Answers (4)

John
John

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

Fenton
Fenton

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

John Leidegren
John Leidegren

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

m.edmondson
m.edmondson

Reputation: 30862

Visual studio is the deFacto and arguably the best

Upvotes: 1

Related Questions