I have a ASP classic web application running on windows 2008 r2 server is not rendering the whole page(only last 70 % is shown) while the same application on my localhost running xp shows all the page content.
Is there any limit on the web page size on new iis or is there any property to change on iis to fit all the page size d...
I had this question before "Resize image on the fly make the image lose quality online but locally works nice"
And what i got now is that it's not a problem of local or online, i ran this resize on the server itself "dedicated server", and i got the same bad quality image, so the problem is in the IIS configurations.
What in iis can ma...
I just switched from Classic Mode to Integrated Mode and now HttpContext doesn't seem to exist in my ASP.NET application. I can't even add a Watch to HttpContext nor to HttpContext.Current.
I'm using FluorineFX where in the Web.config a HttpModule is defined. Apparently, in IIS7 Integrated Mode, these HttpModules need to be added to the...
I have some code running in an asp.mvc app inside IIS 7. The code is supposed to save a file to a UNC share.
This function is called from some controller code, with the filePathname = "\MYSRV\sites\docs\10080003\egg.txt'
public void EnsureDocument(string filePathName ,string content,WindowsIdentity identity )
{
System.Security.Princi...
Hi,
I'm working on a web site under IIS 6.0 .NET 3.5. I made a custom httpmodule to rewrite our url. It works fine, i do a "rewritepath" in the event "onbeginrequest". In my IIS 6.0 logs i can see my rewrited url.
Now my site is under IIS 7.5. I need to keep my custom httpmodule. I can't use the new urlrewrite module from MS. My custom...
Hello. I'm about to begin building an e-commerce website using c#, ASP.Net MVC 2, IIS7 and SQL 2008. The site will allow users to login, make purchases, and manage their orders. Obviously, there's a need for strong security here. I've been searching around on SO and Google for a single definitive guide that covers enough on security ...
I find it really hard to find clear documentation on IIS7 and integrated mode. Apparently the system.webserver section is for IIS7 integrated mode... but, does IIS7 Integrated Mode ignore a system.web section? + Can you configure everything from the system.web section in the system.webserver section?
There's a tool to migrate from IIS6 ...
I have a PHP5 site running on IIS7 and I just wanted to add basic authentication on a subfolder called admin.
I enabled both anonymous authentication and basic authentication and I just want to turn off anonymous authentication on the subfolder in order to force the basic authentication?
Any suggestions?
I tried adding a web.config in...
I am getting the following exception, while using Dundas.Charting in Asp.Net:-
Stack trace: at Dundas.Charting.WebControl.ChartHttpHandler.b(HttpContext )
at Dundas.Charting.WebControl.ChartHttpHandler.System.Web.IHttpHandler.ProcessRequest(HttpContext context)
at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.H...
I am using this connection string to query some .DBF
Driver={Microsoft dBASE Driver (*.dbf)};DriverID=277;Dbq=c:\Dbfs;
But if i run the application on IIS (7.5) the connection cannot be opened and i get this
OdbcException: ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified
...
So I sometimes use app_offline.htm to take an app offline while I upload a new version.
However, while I am in the process of uploading larger dll's, I get the yellow error-screen saying the dll could not be loaded.
This seems to be out of sync with my expectations of what app_offline.htm does (stops the app entirely), and also provide...
When user types www.domain.com he should be instantly redirected to his language version or if he have no language specified in his browser, to default language 'en'.
The problem is to find the good rule to redirect the user to default language when he don't specify any. I'm trying the following expression without success:
<rule name=...
I have been trying to configure a small website on a Windows Server 2008 running IIS 7. Unfortunately, when trying to load the website I keep getting the error: Server Error 401 - Unauthorized: Access is denied due to invalid credentials.
The permissions on the website folder include read, write, and execute for user ASP.NET v4.0. I ev...
I know how to switch to "Classic Mode" (from "Integrated Mode") in the full IIS via application pool settings. But I can't find how to do it in the current IIS Developer Express beta.
The MS Developer Express FAQ says it can be done, but not how. It's not in the WebMatrix GUI, as far as I can tell. Maybe customization of the Developer ...
I've recently moved my site from IIS6 to IIS7. My site uses URL-Rewriting which I had to re-input for the switch to IIS7 as the old URL-Rewriting seems incompatible with the new server.
However, I've noticed that IIS7 doesn't automatically re-write my links. For example, if my page is called Folder1/Folder2/PageName and I'm rewriting fr...
Hi,
we are running a complex 64-bit ASP.NET 2.0 application on W2008 R2 Standard and stress tests done with VS2008 Team System have indicated that integrated pipeline mode is 30% slower than classic mode.
We have compared the application traces extensively and it appears that integrated mode is uniformly slower than classic. That is, t...
Hi,
I have a website set up as an FTP server too.
I want to use the FTP server to allow to access content from a folder outside the root.
I guess this could set up easily by adding a virtual directory. Problem is that I dont want the users to see this outside folder by browsing to the site by http.
Is this possible?
Thanks
...
I maintain a web application that is painful to upgrade. It's not painful because the code is bad, but because there are a lot of devices connected to this application via the web and getting them to update their clients is a lot like moving concrete.
So I had an idea that I could simply present a different version of the application t...
Hi,
what i am trying is the following:
I got an MVC app. running DIRECTLY in "Default Web Site"...
I got another app. ( ProductionService ) which is anotehr standalone app..
Looks like this in IIS-Manager:
My problem is, that a requets to "ProductionService" is not routed to the app., but instead is handled by the MVC-app. runnin...
Hello,
I am new with WCF, I am trying to deploy my WCF sample application on IIS, this application works fine in debug mode with VS2008, this application authenticate the WCF messages with following code. I am doing it like this, I have added the resulted .dlls web.config and the Service.svc in the wwwroot directory, and I have also ad...