vote up 2 vote down star
5

I'm using a web deployment project in order to precompile my ASP.NET 3.5 web project. It creates a single extra DLL for the code in aspx and ascx files. And, for every aspx file there is a placeholder aspx file (empty) which needs to be copied to the server.

I'd like to simplify the deployment process. Is there a way (configuring the IIS site and adding some sort of http handlers etc.) to get rid of these aspx placeholders?

Also, I'd like to know if there is a way to get rid of the .compiled files in the bin folder. It would make the deployment process smoother.

Thanks!

flag

I am assuming the option to convert your website projects to web applications is not available? – cgreeno Jan 8 at 13:44
It already IS a web application project. I use the deployment for having that single DLL - so there is no need of the actual aspx, ascx files. – splattne Jan 8 at 13:51

2 Answers

vote up 0 vote down

IF it is possible, then it will require, at the least, the mapping in IIS of all possible requests to the asp.net engine. Not very difficult. Then, a HttpHandler should be possible to intercept all incoming requests. That handler should then be able to dynamically load compiled page classes and render them. You'd basically have a single engine DLL that serves page content.

But as you might have noticed from all the should's, it's not a simple thing to accomplish, and I doubt that it's really worth the trouble. What exactly is wrong with these placeholder files being present?

link|flag
The project has hundreds of aspx files. The deployment (on many servers on different locations) would be much easier if I in could just "copy" the DLLs instead of synchronizing a lot of aspx files... – splattne Jan 8 at 14:43
I see you've found a way to do this in IIS. However, take a look at Microsoft's robocopy.exe for future reference. It can automatically mirror complete directory trees, so you won't have to synchronize anything manually. – miies Jan 8 at 16:01
Yes, I have something similar (syncback). But the problem is: on some servers I have to go FTP and the web deployment project re-creates this aspx files every time. Since I don't know if there are new aspx, I have to compare them every time ... Oh I could tell you hours of the pain I experienced... – splattne Jan 8 at 16:39
vote up 4 vote down check

I discovered it by myself. It is much easier than I thought (IIS 6.0):

In Internet Information Manager go to the property page of the site, then chose the tab "Home Directory" and click on the button "Configuration...".

Click "Edit..." for the .aspx ISAPI extension and uncheck "Verify that file exists". At this point, no aspx file is needed anymore.

alt text

Update

One important thing: I had to create an empty "default.aspx" file in the root of the application in order to allow the default document for requests like "http://www.example.com/" (without calling an aspx).

Update 2

Another very important thing: if you're using ASP.NET Ajax PageMethods, then you have to keep the aspx placeholder of that page. If you're omitting the file, a javascript 'PageMethods is undefined' error will be thrown on the browser.

link|flag
Sounds good. I hope it does exactly what you expect. – miies Jan 8 at 15:59
Thank you, miies. It seems so. If I discover caveats etc. I'll keep you informed in this answer. – splattne Jan 8 at 16:36

Your Answer

Get an OpenID
or

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