Prev: Error when debugging stored procedure
Next: How can a different web page (aspx) access anothers session variab
From: RML on 14 Jun 2010 16:23 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?
From: Harlan Messinger on 15 Jun 2010 15:37
RML wrote: > 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. |