Ask a Question related to ASP.NET Security, Design and Development.
-
DaVBGuy #1
forms authentication over multiple projects
Here is my scenario:
I have an aspx page that is essentially a table of contents to a bunch of
other aspx pages. The table of contents page launches other aspx pages (from
different asp projects). I do not want the users to access these pages
directly as I want them to only go thru the table of contents page.
Therefore I have set forms authentication on these pages.
In order to get to the table of contents page, I use also use Forms
authentication, so the user has to log in first to get to the page. This
works fine. However, I want to be able to pass the user's authenticated
credentials to the "sub" aspx pages. This is the part that I'm having
trouble with.
Any help would be appreciated.
Thank you for your time.
DaVBGuy Guest
-
Forms authentication with multiple projects in a solution
I am attempting to break my application into multiple projects using the technique described in KB #307467. I successfully execute my 'Main'... -
Forms authentication and multiple login pages
Hi, I use a "forms based" security scheme. As I understood it, all I need is a "login" page (the unsecured one) and the rest. I have a little... -
Unable to debug multiple ASP.NET projects simultaneously
Hi, I was trying to debug two different ASP.NET projects at the same time. But I was only able to debug one of them and I got the following error... -
Uses ASP.NET form authentication across projects?
Basically this needs to be done so that: a) synchronize <machineKey> elements in web.config for all applications b) synchronize <authentication>... -
One solution containing multiple projects and multiple hosts
Can anyone help? jsausten@hotmail.com (Stephen Miller) wrote in message news:<cdb404de.0306160645.428f9f46@posting.google.com>... -
Yunus Emre ALPÖZEN [MCAD.NET] #2
Re: forms authentication over multiple projects
What is it mean ? "..to the "sub" aspx pages ..."
Do u mean different ASP.NET applications? If yes, answer is easy. I think, u
don't. But what?
--
Thanks,
Yunus Emre ALPÖZEN
BSc, MCAD.NET
"DaVBGuy" <DaVBGuy@discussions.microsoft.com> wrote in message
news:914A3978-2DF5-449A-AD5E-70B70CE70843@microsoft.com...> Here is my scenario:
>
> I have an aspx page that is essentially a table of contents to a bunch of
> other aspx pages. The table of contents page launches other aspx pages
> (from
> different asp projects). I do not want the users to access these pages
> directly as I want them to only go thru the table of contents page.
> Therefore I have set forms authentication on these pages.
>
> In order to get to the table of contents page, I use also use Forms
> authentication, so the user has to log in first to get to the page. This
> works fine. However, I want to be able to pass the user's authenticated
> credentials to the "sub" aspx pages. This is the part that I'm having
> trouble with.
>
> Any help would be appreciated.
>
> Thank you for your time.
Yunus Emre ALPÖZEN [MCAD.NET] Guest
-
Dominick Baier [DevelopMentor] #3
Re: forms authentication over multiple projects
Hello DaVBGuy,
be sure that the following is the same on all your "single-signon" sites
- auth cookie name
- cookie path
- machinekey section in web.config to encrypt/decrypt/validate the auth cookie
---------------------------------------
Dominick Baier - DevelopMentor
[url]http://www.leastprivilege.com[/url]
> Here is my scenario:
>
> I have an aspx page that is essentially a table of contents to a bunch
> of other aspx pages. The table of contents page launches other aspx
> pages (from different asp projects). I do not want the users to
> access these pages directly as I want them to only go thru the table
> of contents page. Therefore I have set forms authentication on these
> pages.
>
> In order to get to the table of contents page, I use also use Forms
> authentication, so the user has to log in first to get to the page.
> This works fine. However, I want to be able to pass the user's
> authenticated credentials to the "sub" aspx pages. This is the part
> that I'm having trouble with.
>
> Any help would be appreciated.
>
> Thank you for your time.
>
Dominick Baier [DevelopMentor] Guest
-
Hernan de Lahitte #4
Re: forms authentication over multiple projects
Adding further details to what Dominic said, you may take a look here:
[url]http://weblogs.asp.net/hernandl/archive/2004/06/09/ssoformsauth.aspx[/url]
--
Hernan de Lahitte
[url]http://clariusconsulting.net/hdl[/url]
"DaVBGuy" <DaVBGuy@discussions.microsoft.com> wrote in message
news:914A3978-2DF5-449A-AD5E-70B70CE70843@microsoft.com...> Here is my scenario:
>
> I have an aspx page that is essentially a table of contents to a bunch of
> other aspx pages. The table of contents page launches other aspx pages
> (from
> different asp projects). I do not want the users to access these pages
> directly as I want them to only go thru the table of contents page.
> Therefore I have set forms authentication on these pages.
>
> In order to get to the table of contents page, I use also use Forms
> authentication, so the user has to log in first to get to the page. This
> works fine. However, I want to be able to pass the user's authenticated
> credentials to the "sub" aspx pages. This is the part that I'm having
> trouble with.
>
> Any help would be appreciated.
>
> Thank you for your time.
Hernan de Lahitte Guest



Reply With Quote

