John Boker
John Boker

Reputation: 83729

Tools to convert asp.net dynamic site into static site

Are there any tools that will spider an asp.net website and create a static site?

Upvotes: 0

Views: 1724

Answers (4)

schudel
schudel

Reputation: 1225

You could use OfflineExplorer: http://www.metaproducts.com/mp/Offline_Explorer.htm

This works well as long as you only have GET requests (links). Postbacks will not be executed. Be aware that crawling your site might acually change the underlying database so I would strongly recommend you back up the database and web before using a crawler.

Upvotes: 1

Herb Caudill
Herb Caudill

Reputation: 50002

I've had good luck with WebZip.

Upvotes: 0

ceejayoz
ceejayoz

Reputation: 180124

Another solution is wget.

Upvotes: 0

seanb
seanb

Reputation: 6954

http://www.httrack.com/
Have used for this purpose a few times, may need to do a little tidying up of urls, and some css linked images might not make it, depends on how good a job you want to do.
If you have dreamweaver, you can use that to manage the links if you need to clean up the file names afterwards.
Optionally use the link checker extension for firefox to check it all afterwards.

Upvotes: 2

Related Questions