Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I export generated html pages from ASP.NET website through Visual Studio?

Tags:

My friend uses Visual Studio to develop websites in ASP.NET. She only uses the Master Page facility, other than that it's 100% normal HTML and CSS.

Is there a way to export the website to HTML pages based upon their master pages?

If not, it's either loading each page manually and saving the HTML, or I write a little app that does it.

Alternatively, does anyone know of a tool to achieve something similar?

like image 399
joshcomley Avatar asked May 26 '09 14:05

joshcomley


1 Answers

Visual Studio doesn't have this ability out of the box. However, it should be possible to write a tool that walks through a site map, captures the rendered html from the response object, and then write it to a file.

like image 91
Soviut Avatar answered Sep 30 '22 04:09

Soviut