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?
...
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.
...
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 ...
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...
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...
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?
If so, what's the best way to degrade gracefully and remain functional on IIS6?
Thanks!
...
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.
...
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 ...
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...
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?
...
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...
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?
...
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 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...
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...
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...
I need to programatically create an IIS website. Can anybody show me the code to do this?
...
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...
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,...