Forum Moderators: phranque

Message Too Old, No Replies

ASP.NET to HTML code

         

lojacky

5:47 pm on Feb 24, 2006 (gmt 0)



Hi guys, i'm a newbie of web development, and now my boss wants me to find a software that convert ASP.net code to HTML format, so the spider can go thru our website. I would like to know is there any software that convert the asp.net to html code? The website that we currently have is too big that we cannot modify each page one by one.

Any comments is helpful to me!

Thank you guys!

txbakers

10:31 pm on Feb 24, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Hi and welcome to the Webmaster World Forums.

ASP.NET code is rendered on the server before it gets to the user's web browser. Once it appears on the screen, it already is converted into HTML. there is nothing that you need to do beyond that.

Lorel

5:05 am on Feb 28, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



if you have session IDs enabled this could be the reason for poor search engine rank with .asp script. See Google's guidelines against using session IDs. Google guy also recommended not using them.

Demaestro

11:51 pm on Feb 28, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



What you want to do is either manually view all the pages on the site and save the source as an HTML file, or if you have the ability you can write a script that would grab all the pages using wget. Have your script write the output of every page to it's own file on the server and you are good to go.

This was mentioned but ASP.net will convert all it's code to HTML before it passes the html source to a browser requesting the page. So the hard part is done all you have to do is savve the output.