Link to home
Start Free TrialLog in
Avatar of mcdermon
mcdermon

asked on

ASP.NET 3.5 Chart Control Needs Authentication

Hello Everyone,
   I am having an issue with a project in .Net 3.5. My application has a login page and it uses Forms Authenication. There is one page, however that I want available to anyone who looks at it (without logging in). This works fine as I use this in my Web.Config page:-

<location path="UnsecuredPage.aspx">
    <system.web>
      <authorization>
        <allow users="*"/>
      </authorization>
    </system.web>
  </location>

The only problem is that this page has a Chart Control on it and while the chart works fine on this page if you have logged in, if you haven't it does not appear (a red x appears instead)

Any suggestions.
Thanks,
mcdermon
ASKER CERTIFIED SOLUTION
Avatar of PaulHews
PaulHews
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of mcdermon
mcdermon

ASKER

Thank you so much - that worked a treat!
mcdermon