-
Posted to
IIS7 - General
by
perb
on
05-20-2009, 3:34 AM
Exactly what I was looking for, thank you!!
-
Posted to
IIS7 - General
by
perb
on
05-16-2009, 1:46 PM
Ok, let me rephrase the question. Does anyone know anything more than the above snippet of information ? Anything at all, is there an API I can hook into or what does this mean?
I would like to evalutate this feature before the RTM.
-
Posted to
IIS7 - General
by
perb
on
05-16-2009, 5:52 AM
Hi,
does anyone have any more details on this feature in Windows Server 2008 R2:
Support for application pool warm-up for large applications that want
to "prime" an application pool for better performance on the initial
request
/Per
-
Posted to
IIS7 - Publishing
by
perb
on
10-02-2008, 4:05 AM
I have a server in a hosting scenario where I create multiple sites configured with their own membership provider (and their own database), using different domains (same IP).
It works find for ASP.NET but the FTP server always uses the global membership provider (defined in the global web.config) when I connect to the virtual hosts. The ...
-
Posted to
IIS7 - Performance
by
perb
on
04-23-2008, 3:31 AM
We actually don't do unmanaged code anymore so if you have somewhere to store feature requests please add access to this API from ASP.NET a high priority from me.
I guess user-mode caching is not possible in my case, too bad..
-
Posted to
IIS7 - Performance
by
perb
on
04-22-2008, 4:05 AM
Ok, I was actually more interested in skipping reading from output cache when a user is logged in because I don't want unlimited variations, but I guess placing a call to Response.DisableKernelCache() at the right place could do the trick ?
-
Posted to
IIS7 - Performance
by
perb
on
04-21-2008, 5:18 AM
Thanks for the response!
Is there anything I have to do to stop the user-mode Native Output Cache from caching when I am logged in using ASP.NET Forms authentication ?
Right now, it caches everything. Thanks.
Update: It looks like it cache different content for my logged in user and my anonymous user.. hmm, is there any specification on ...
-
Posted to
IIS7 - Performance
by
perb
on
04-17-2008, 1:05 PM
Hi,
I have ASP.NET pages with dynamic content (vary based on querystring) that today uses the ASP.NET Output cache on IIS 6.
But, when moving to IIS 7, should I switch to IIS 7 Native Output cache (user-mode) or what is the recommendation here?
I havent found any guidelines or comparisation between the two so I am a bit confused here.
-
Posted to
IIS7 - UI & Remote Management
by
perb
on
12-03-2007, 10:49 AM
I've tried to obvious solution to create my own non-abstract base class and it didn't work for WizardForm so I did'nt try WizardPage.
But, it actually works fine for WizardPage so that solves my problem because it's the wizard steps you really need a designer for to be productive.
So this is the code I am talking ...
-
Posted to
IIS7 - UI & Remote Management
by
perb
on
12-03-2007, 9:37 AM
I'm trying to build a extension that uses the WizardForm/WizardPage base classes but those are abstract and the designer in Visual Studio 2008 won't launch because of that. So, is there a workaround for this ?