Normal
0
false
false
false
EN-US
X-NONE
X-NONE
/* Style Definitions */
table.MsoNormalTable
{mso-style-name:"Table Normal";
mso-tstyle-rowband-size:0;
mso-tstyle-colband-size:0;
mso-style-noshow:yes;
mso-style-priority:99;
mso-style-qformat:yes;
mso-style-parent:"";
mso-padding-alt:0in 5.4pt 0in 5.4pt;
mso-para-margin-top:0in;
mso-para-margin-right:0in;
mso-para-margin-bottom:10.0pt;
mso-para-margin-left:0in;
line-height:115%;
mso-pagination:widow-orphan;
font-size:11.0pt;
font-family:"Calibri","sans-serif";
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:"Times New Roman";
mso-fareast-theme-font:minor-fareast;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;}
I have a page which needs to be
accessed by logged in user. So I created a folder named ‘Manage’ inside my root
directory and placed it there. After that I used ASP.NET Configuration tool to
create a user and a role, assigned user the role. Allowed role to access root
folder and denied manage folder anonymous user access. On login button click
redirected to the page.
Everything works fine until one
clicks the button on the page – it turns up to
The
resource cannot be found.
Description: HTTP 404. The resource
you are looking for (or one of its dependencies) could have been removed, had
its name changed, or is temporarily unavailable. Please review the
following URL and make sure that it is spelled correctly
Requested URL: /VM n 1Nov 2008/login.aspx
Web.config settings in root folder are
<authorization>
<allow roles="Add Articles" />
</authorization>
Web.config settings in folder ‘Manage’ are
<authorization>
<deny users="?" />
</authorization>
Please help me get rid of this ‘resource cannot be found’
trouble. Thanks in advance.