Basically there are simple errors in ASHX file (like missing comma or something like that). Everything is complied OK by Visual Studio, but once the file is accessed (hosted by IIS), an error pops up.

Is there a way to recognize such blunders in MSBuild or Visual Studio?

link|improve this question

The problem is the ASHX isn't actually getting compiled - it's done on request by IIS. I think you can force this in VS by adding a Web Deployment Project (or something similar) to your solution but I'm not 100% sure what. – Rup Sep 8 '11 at 17:29
feedback

1 Answer

up vote 4 down vote accepted

You can use the ASP.NET compilation tool (aspnet_compiler.exe) to compile ASHX files. See MSDN, How to: Precompile ASP.NET Web Site Projects.

link|improve this answer
Super. That's what I need for MSBuild. Thanks! – Schultz9999 Sep 8 '11 at 21:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.