I am looking for the file WebResource.axd (to see its source code) but I dont find it.
Does someone know where can I find it ?
Thanks.
|
feedback
|
|
.axd files are typically implemented as HTTP Handlers. They don't exist as an ASP.NET web page, but rather as a class that implements the If you look in the root
This entry says, "Hey, if a request comes in for The code for this class is a bit lengthy, so I can't post it here, but you can use a disassembler like the free Reflector to view this class's source code. You could probably get the original source code (with comments) by using the NetMassDownloader tool. | |||||||||||||
feedback
|