views:

238

answers:

5

Are there any freeware plugins that would help me view the HTML Source generated by ASP.NET?

+1  A: 

You can use Internet Explorer's View Source button, under the 'Edit menu. Firefox has something similar under the View menu.

Edit: If you're looking for the source code for the application, you won't be able to see that no matter what you do. The server sends the client only what it wants the client to see. For ASP.NET, this means you'll see ASP.NET generated control IDs and the like. If you want to do this on your own without a web browser, try Wget.

George Stocker
But there is some hidden code that I am unable to view by viewsource. I am asking about someplugin that will let me view that code too
sam
View HTML is a plugin that will give you the power to see the HTML search code for a webpage.
sam
someplugin like this one as this one is not downloadable
sam
HTML Search Code?
George Stocker
A: 

You shouldn't have to look when that function is already built in to just about every single web browser out there. View Source is a standard feature.

TheTXI
+1  A: 

The Internet Explorer Developer Toolbar has many features. The Web Developer add-on for Firefox looks slick. Here is a walk through of using another add-on for FireFox.

If what your looking for is just to view the source, all browsers I am familiar with have that feature built in. Internet Explorer

notandy
+2  A: 

Microsoft's Fiddler2 for IE

Or Firebug for FireFox

With these you see the real source generated by ASP.NET, not the mangled source as shown in a browsers 'view source' menu option

TFD
A: 

Installing the Web Developer extension for Firefox will let you view 'generated' source (i.e. it includes changes made to the html by client side javascript etc..). Otherwise the standard 'view source' option available in any browser should suffice.

Nick