iis7

What is the difference between classic and integrated in IIS7?

I was deploying an ASP.NET MVC application last night, and found out that it is less work to deploy with IIS7 set to integrated mode. My question is what is the difference? And what are the implications or using one or the other? ...

Attach DLL to ASP.NET Site

Hello, How do you attach a dll to a asp.net site? I want to be able to debug and edit the dll without having to keep replacing the reference in my asp.net site. I checked attach to process but didn't see the worker process. I am using asp.net, iis 7. ...

Annoying IIS 7 Url Rewriting Problem

I was writing up this question and in the process, it forced me to think a little harder and I answered it myself, though I still don't completely understand why it solved it. I have an account on a shared host with 2 domains registered. I'm using the Asp.Net stack to run a few things like a blog and another site I am planning to kick ...

How do you change the allowDefinition section attribute using appcmd in IIS 7?

Is it possible to use appcmd to change the value of allowDefinition? Specifically I'm try to enable changes to the httpCompression module at the application level. Modifying the applicationHost.config by manually changing the following line: <section name="httpCompression" allowDefinition="AppHostOnly" overrideModeDefault="Deny" /> T...

PHP and OpenID = 500 error

Having a really strange problem. Scenario: PHP5.2.9, IIS7, PHP running as FastCGI. I have a site at test.concentratedtech.com. Click login, enter OpenID credentials, hit "Verify," and immediate 500 error. Click Back, resubmit the page, works fine. An IIS failed request trace reveals two messages, below. These messages seems to general...

French IIS7 Custom Error Pages Language

IIS7 provides custom error pages under; C:\inetpub\custerr\en-US However I'd like some other European languages too as by default only English is provided. Has anyone seen an error page "language pack" for download anywhere. Do I have to install the full windows language pack, I'd rather not. http://www.microsoft.com/Downloads/details...

Do I need to change anything programmatically to leverage the integrated pipeline in IIS7?

Do I need to change anything programmatically to leverage the integrated pipeline in IIS7? If so, what's the best way to degrade gracefully and remain functional on IIS6? Thanks! ...

How do I set the ASP.NET version for a Virtual Directory using IIS Manager 7.0?

In the old version of IIS Manager, I could just right-click on a VD, hit properties, and then in the ASP.NET tab pick the version of ASP.NET I wanted to run. Does anyone know if that is still possible? I am running a localhost instance of IIS on my Vista box and I am not used to the new UI that IIS 7 comes with. ...

Many multiple files versus few larger files hosted by IIS7 + Windows Server 2008

Can you point me to best practices for file hosting in IIS 7. The number of files can be very high > 500,000, 2-10KB each. A possible concern is the performance with such a large number of files. We could have a smaller number of larger files and have a HTTP handler to process the requests or just have the smaller files and use IIS7 to ...

IIS 7: Redirect all request to Default.aspx

We want to redirect all request in an ASP.NET site to ~/Default.aspx to close the site. We are using IIS7. The site has paths like this that return a page: http://test.com/operating We are using url rewriting. We want requests similar to those to be redirected to ~/Default.aspx http://test.com// http://test.com/.aspx http://test.co...

.Net 1.1 C# Development on 64bit Vista with IIS 7.0 and Vs2003

Can this be made to work? - been having lots of issues setting it up: HttpHandlers not being seen even though .net 1.1 is installed and regiis -i working, worker processes crashing. Really need this for maintaining many old projects. Is there a specific order that things need to be installed in? ...

Cookieless sessions and IIS7 causes a redirect loop

I have an ASP .NET website that uses cookieless sessions. When the initial request is made to the site using a url such as: http://localhost/site IE just displays the standard "Internet Explorer cannot display the webpage" message. Firefox is a bit more helpful and displays the following message: "Redirection limit for this URL exceed...

Do you lose functionality when hosting ASP.NET MVC on IIS 6? If so, what?

As a dev team, we're looking to switch to asp.net MVC and I've heard rumors about IIS 6 not being able to support all of the MVC functionality. Is this true? Is there any official set of functionality supported in IIS 7 vs IIS 6? Should we completely avoid running it on IIS6? ...

What is the difference between DefaultAppPool and Classic .NET AppPool in IIS7?

I have a problem with timeouts in IIS. In the web.config the session timeout was set to 60 minutes but after 20 minutes the session ends. This problem only occurs in IIS7 and not in IIS5. After some investigation, I discovered it was due to the application pool's timeout. If the App Pool is left 20 minutes without doing anything, IIS ...

IIS simultaneous requests limit

IIS 7 on Vista has a limit for concurrent requests (up to 10). I have a Virtual PC on my Vista with Windows Server 2008 installed on it. IIS 7 on the virtual PC still limits simultaneous requests. When I run the same application on ASP.NET Development Server, it's ok - there are no limits. Is the problem in host OS? How can I tune IIS t...

Handler not yet determined error

Hello, I don’t know anything about deploying a website, so I probably made some stupid mistake. Anyways, I opened IIS 7 manager, created new virtual directory ( via Add Application ) and pointed it to physical directory where Visual studio saved my Web project. But when I tried to request an .aspx page, browser reported the followin...

IIS 7 websites share same Application Pool

Hello I have an ASP.NET app. I plan to run several instances of this app on the same server. Each instance has its own domain, like www.app1.com and www.app2.com. Each app instance has its own Admin area, that should be SSL protected. You can't install multiple SSL certs on the same machine and port number, so using https://www.app1.c...

Code to create IIS Website

I need to programatically create an IIS website. Can anybody show me the code to do this? ...

YSlow and css images - How do I GZip them with IIS7?

YSlow says that images referenced from my CSS file (background image, for example) are not GZipped. I have static and dynamic compression turned on for my website in IIS7... so they should be compressed. Is this a bug with YSlow or do image requests from CSS files ignore the compression header? Is there a way to get these images GZipp...

Load balanced websites on IIS 7

Looking at implementing load balancing for Windows hosted web sites on IIS, but want to know of the issues involved in doing so. Website are ASP.NET - with a mix of custom authentication and ASP.NET Authentication. For example: Files : store on networked share obvious choice, but I expect it will put a lot of demand on the file server,...