How to get the LoginUrl and defaultUrl in web.config

A

ad

I have defined the LoginUrl and defaultUrl in web.config.
<authentication mode="Forms">
<forms name="HealthCookie" loginUrl="Login.aspx" defaultUrl="Home.aspx"
protection="Validation">
</forms>
</authentication>

How can I get the values with code?
 
G

Guest

Have you looked at the FormsAuthentication class? It has a number of
properties. LoginUrl is one of them.
Pete
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top