Click here to Skip to main content
15,881,882 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
Hello everyone,
I m working on Asp.net 4.0 c#

I am facing issue with redirecting on home page.
What exactly happening
I am creating a new site with the functionality
- form authentication
- custom role provider
- site map (from web.sitemap)
The site is build and debug properly.
And my requirement is when any one visit to site he should able to see the home.aspx (home page of Site)but
when i am running the site it's redirecting to login.aspx(login page of site) and my URL becomes as
"http://localhost:1552/aspx/Login.aspx?ReturnUrl=%2faspx%2fHome.aspx"

Also the master page is not applying with its CSS, only the content of master page is displaying.

Web.config file changes for form authentication are
XML
<authentication mode="Forms">
    <forms defaultUrl="~/aspx/Home.aspx"  loginUrl="~/aspx/Login.aspx"  timeout="60"/>
  </authentication>


# For sitemap, Web.config changes are
XML
<siteMap defaultProvider="AspNetXmlSiteMapProvider" enabled="true">
      <providers>
        <clear />
        <add name="AspNetXmlSiteMapProvider" type="System.Web.XmlSiteMapProvider, System.Web, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
     siteMapFile="web.sitemap" securityTrimmingEnabled="true"  />
      </providers>
    </siteMap>

    <authorization>
      <deny users="?" />
    </authorization>


And for authentication i have 2 type of user 1. from admin and another one guest
for there aspx page i have separately create the folder structure and in web.config i provide there location as
XML
<location path="aspx/_admin">
   <system.web>
     <authorization>
       <allow roles ="admin"/>
       <deny users="*"/>
     </authorization>
   </system.web>
 </location>
 <location path ="aspx/_guest" >
   <system.web>
     <authorization>
       <allow roles="guest" />
       <deny users="*"/>
     </authorization>
   </system.web>
 </location>


I think the issue is related to form authentication or may be due to the location tag which i have specified in web.config file
Its a urgent requirement, the dead-line is too short. please help me if any one knows the solution
Posted
Updated 27-Sep-21 16:17pm
Comments

1 solution

Also add a section in web.config.

XML
<location path="~/Home.aspx">
   <system.web>
     <authorization>
       <allow users="*" />
     </authorization>
   </system.web>
 </location>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900