Link to home
Start Free TrialLog in
Avatar of 1namyln
1namylnFlag for United States of America

asked on

How Can I Easily Edit My .asp Web Pages?

Back in the day I used FrontPage.  I have inherited a website where the page extensions are .asp.  I would like a program similar to FrontPage in simplicity to edit these pages.  The pages are very cookie cutter and not a lot of complicated changes needed.  I prefer a WYSIWYG editor.  Thanks in advance.
Avatar of Big Monty
Big Monty
Flag of United States of America image

I prefer visual studio or notepad++
I'd go with Visual Studio too personally. Although notepad will do the job if you just want to hand code.
Avatar of 1namyln

ASKER

Downloading Visual Studio now.  So this program will let me create a page with little knowledge of .html?  I understand having a tab that shows the raw code but I'd make my changes without directly typing the code.
Avatar of 1namyln

ASKER

So I have the program up and running.  I have opened the files in question but I'm unable to see a "design" tab.    The only thing I see is the raw code.
I believe it's under the view menu. Look for design view
I agree that text editors like notepad++ or I use submlimetext are in the end faster and easier when you know what you are doing.  If you need the help of a design view and drag and drop, about the only thing left is Dreamweaver.    For classic asp, you will want to get a hold of the previous version (cs5.5) as I don't think the newest version has direct support for classic asp.  By direct support I mean it can help create recordsets, drag and drop fields etc.  The newest version is still usable, but you will be using the design view for drag and drop of placing html elements but you will still need to hand code the asp portion.

The reason why there are few choices here is because the professional developers are using IDE's and text editors. For previews, they are using the actual browser.  On the other side, those that are just interested in creating content and do not want to develop the site beyond simply adding pages are using CMS sites like Wordpress, wix.com, weebely.com or squarespace.com.

You can edit an asp or pure html site in any text editor and use the browser for a preview.     One of the newer and free/open source text editors is brackets http://brackets.io/.  It is easy to use and manage the files in your site folder.
Avatar of 1namyln

ASKER

I don't see anything under view referencing design view.  The way I opened the file was to click file, open then browse to my .asp files.
Capture.PNG
1namyln, I don't think you are going to find a design view in VS similar to what you used in frontpage.
Avatar of 1namyln

ASKER

Scott, could you recommend another option with a design view?
ASKER CERTIFIED SOLUTION
Avatar of Scott Fell
Scott Fell
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of 1namyln

ASKER

I don't see the design, split or source at the bottom when I have my file open.  I'm checking out Dreamweaver now.
Avatar of 1namyln

ASKER

When I open a file the extension is .asp.  The link is from Version 2003.  Best I can tell it doesn't apply to the version I'm using or because I'm not opening HTML files.
seems to be by design with the new visual studio, although you can still use the old editor with those tabs:

right click on an html file listed in Solution Explorer
in dialog box that opens click on: Open With...
click on: HTML (Web Forms) Editor,  AND on the right pane click on Set it As Default
after this action all html files that you open have options: Design...Split...Source.
Avatar of 1namyln

ASKER

I don't understand how to open a file from Solutions Explorer.  I see a box that pops up on the right but I don't see how to open a file.
find the file in the solutions explorer, highlight it, then right mouse click the file and select Open With
Avatar of 1namyln

ASKER

I don't see the HTML (Web Forms) Editor as an option, assuming I'm in the right place.
Capture.PNG
the Solution Explorer is within Visual Studio. You can get to it by View->Solution Explorer
Avatar of 1namyln

ASKER

Yes and the attached image is what mine looks like.  With this Windows selected I can click file open and find my file but when open with is selected from within the file open I don't have an option for HTML Editor.
solutions-explorer.PNG
you need to load the file first, then it should appear in the Solution Explorer, where you can then follow the steps outlined above
Avatar of 1namyln

ASKER

Dreamweaver is perfect for what I need.  Thank you!!