Hi,
I have developed a site in ASP.NET 3.5
I had deployed it on Windows server 2008 and iis7. I was using evaluation version of Windows server 2008. Day before yesterday the evalution period expired and I formatted my machine and re-installed the Windows server 2008.
Now, when I deploy the site on IIS7 and try to access it then I get ...
I just read an article saying that passwords with 7 characters are no longer safe. However, if the server increases the time to retry a login attempt after each login attempt, then brute force attacks are useless. How do you create such logic in asp.net? Somehow I guess the server side code needs to remember the ip-address that tried to ...
I've just create a new ASP.NET Web Application in VS2010, and set it up as an application in IIS7.
Not sure if this is relevant, but the code physically resides in the \myserver\projects\epeui\epe folder (the projects folder is the root of my default web site). The application hangs off the root of this machine's default web site: http:...
I came across a strange problem with a website that I am working on when I moved it from Visual Studio 2010 (Cassini) Webserver to IIS 7 running on Windows 2008. Given the following class as the viewmodel posted back to the server:
public class NominateViewModel
{
public Models.Category Category { get; set; }
publi...
is this something basic or am I missing something?
My ASP.NET (4.0) site has a web.config with URL rewrite rules. When I run it in debug mode (local webserver) all the URLs fail because the local web server does not recognize the rules (e.g. I have /register which maps to register.aspx etc.)
Is there someway I can get the debug system ...
hi,
i am having strange problem, when i change the default app pool to use .Net 4.0 from .Net 2.0 i get blank page with no HTML, strangely enough i have VS 2010 installed with Net4.0
thanks in adavanced
...
I have created a virtual Directory (IIS 7.0), which points to a network share. This virtual directory resides under my web application root.
I tried using anonymous access with domain credentials. Also, I tried using impersonation as below...
<identity impersonate="true" userName="<supplied username>"
password="<supplied password>" />
...
On my ASP.NET 4.0 MVC project running in IIS 7 I have set up and configured ELMAH to log errors on my site. However, I am unable to get any reporting on errors with code 500.
I set up a simple controller that creates a divide-by-zero exception, but ELMAH does not log it. I can get ELMAH to log other messages just fine and I am not filt...
I'm using the Telerik controls form MVC and they work great in my work/home dev environments, and in the work prod environment, but when I tried to deploy to my home prod environment (IIS7) I get a problem.
I've added the axd mime type, but wan't sure what else to do.
I read a post suggesting adding a handler, but wasn't sure if I'm se...
I am running into a bad request error 400 on IIS7. I have encoded special characters in the URL string. My URL's look something like this (doesn't like %26):
http://www.myjobs.com/a/q-Barnes+%26+Noble
This would be an easy fix if I were running on .NET 4.0, but I am on rackspace cloud and can only run on IIS7 .NET 3.5.
This is what ...
Hello, I have a http redirect in iis7 to send request to another domain. If url is something like http://www.example.com/news/ it's ok but if i try http://www.example.com/news/?id=3 then get parametes is deleted from string it's redirects to the same http://www.example.com/news/.
How to save get parameters in query string with iis7?
we...
Good day!
I've recently switched from IIS 6.0 to IIS 7.x and I'm in search of error handling technique of my dream for ASP.NET MVC 2.
What I want to achive:
Handle all unhandled exceptions in one place (preferable in Global.asax handler)
Custom handlers for 404 and 403 errors (both for MVC controller\actions and static files). These ...
IIS 7.5 introduces the notion of auto-start providers, that allow you to get WAS to auto-load an application or assemblies when an application pool starts up.
Can a similar thing be acheived with IIS7?
Basically, we have an application that runs under WAS, and has an in-memory cache of data. When an application pool recycle occurs, my ...
I'm currently planning to deploy a site with a third party hosting provider. I will only have access to the server via ftp and a tool similar to cpanel called WebsitePanel.
No access to IIS set up or configs.
Is there anyway to redirect http://www.example.com to http://example.com?
...
I have IIS7, web app is written on ASP.NET 1.1.
I need to see files and folders in the browser when adress as like http://localhost/MyProject.
Have to make permission for this? or...
so, help me please
UPD. Yes I know it. But when I did this I have this error
Line 215: </root>
Line 216: </log4net>
Line 217: <system.webServe...
I'm building a custom ASP.NET 4 blog app. For the admin directory I could use ASP.NET forms authentication, but since I will be the only user I'm thinking of just using IIS 7 directory security to prompt for user name and password. Is there any reason not to do this? Is IIS 7 security good?
...
I've got an ASP.NET MVC app running under IIS7. It's using the default in-proc session management, which, according to all that I read, should lose the users' session after an app pool recycle.
It doesn't seem to be losing it though. Even an IIS reset doesn't lose the session.
Has something changed in IIS7 that keeps the session alive?
...
Hello,
I have a site on my server that only works with a www.
example:
http://www.dartmouthplayers.ns.ca/
works but without it, it does not.
http://dartmouthplayers.ns.ca/
But the site's bindings has both listed:
and the DNS has the blank host record:
What did I not set right?
It's odd because:
http://dartmouthplayers.ns.ca/ - re...
Using Win7 32-bit for 3 months and didn't have problem with developing any .NET-based applications including ASP.NET apps.
Just upgraded my laptop's RAM 3 days ago and switched to 64-bit version of Win7.
When I'm working on installing IIS7 and .NET Framework 3.5 SP1, there's an error about not all features were installed for some unkno...
Good day!
I use strategy to handle 404 errors like this: http://stackoverflow.com/questions/3545906/error-handling-for-asp-net-mvc-2-and-iis-7-0 or this: http://stackoverflow.com/questions/619895/how-can-i-properly-handle-404s-in-asp-net-mvc/620559#620559
In short: I handle 404 as exception in Global.asax without adding any routing ru...