Precompiled site and web crawlers

  • Thread starter Thread starter RML
  • Start date Start date
R

RML

My VS2008 Web application is a precompiled site with the "Updatable" option
turned off. Will web crawlers be able to "see" the HTML code in my aspx
pages?
 
RML said:
My VS2008 Web application is a precompiled site with the "Updatable" option
turned off. Will web crawlers be able to "see" the HTML code in my aspx
pages?

Neither web crawlers nor web browsers have any idea what's on your
server--HTML, uncompiled ASP.NET code, precompiled code, PHP, whatever.
The only see the code that the web server sends to them. An ASP.NET site
is sending the same code to the client (browser or crawler or whatever)
whether or not it's precompiled.
 
Back
Top