Posted on: 2/6/2012 3:03:56 AM | Views : 1003

i have a .net 4.0 web application. This application works fine in the development environment. The application also work excellent when i deploy it to local II7 7.0. The problem comes when i deploy the project. I spent more then 10 hours and deployed it almost 10 times on the remote server but no SUCCESS!!!!.  I am getting nuts.
Problem Description
I have a folder where secure pages are placed. These pages will be accessed once the user is sucessfully authenticated. following is the structure of web.config in this particular folder.
<?xml version="1.0"?> <configuration> <system.web> <authorization> <deny users="?"/> </authorization> </system.web> </configuration> But what happen is that after the user enter login/password (which is confirmed correct as I have ...

Go to the complete details ...