Ask a Question related to ASP.NET Security, Design and Development.
-
DotNetJunkies User #1
Register new user forms authentication
Ok I admit to being new at this and having problems getting my head around IIS.
So if you can help me I will much appreciate it. I have a login page with a hyperlink on it that directs to a page for new users to enter their details. When you click on it the the browser does not go past the login page. I understand that it should not let you past the logon page unless the username and password agree with those setup in web.config (i will use a database for storing these later as I realise its the best way to do it)
Can you help me to get the register new user page up from the login page.
Is this an IIS issue, do I need to add something to web.config.
The manuals dont explain this very well to me.
Thank
David
---
Posted using Wimdows.net NntpNews Component -
Post Made from [url]http://www.DotNetJunkies.com/newsgroups[/url] Our newsgroup engine supports Post Alerts, Ratings, and Searching.
DotNetJunkies User Guest
-
Forms authentication <-> Windows user?
Hi, I'm new in ASP.NET and I've got a question about authentication in an intranet application: I want to authentify and authorize the user by... -
Forms Authentication Anonymous User
Hi, I have implemented Forms-Based Authentication for a website I am designing which is working fine. However I want to get a list of Roles for... -
ASP.NET Forms Authentication Via A SQL Server Database With Windows User types?
We have built an ASP.NET application that will run on the Intranet using SQL 2000 as our data layer. We have decided to use Form Authentication... -
User Session issue with ASP.NET Forms authentication & Windows 2003
Hi, I first posted this query in just the aspnet ng but didn't get a reply so I'm posting here (probably more appropriate) Hope one of you guys... -
Mixing Forms Authentication with User Accounts in ASP.NET
Put simply, I want to use a custom form where a user can enter their Windows Domain Account and password, and have that validated. i.e. I do not... -
ranganh #2
RE: Register new user forms authentication
Hi,
I understand you have applied forms authentication and in the web.config you have given deny users = ? so its redirecting all unauthetnicated requests to the login page.
you add the following attribute to the web.config to allow anonymous users to register.aspx page.
<location path="Register.aspx"> -- or whatever name is your registration page
<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>
</location>
"DotNetJunkies User" wrote:
> Ok I admit to being new at this and having problems getting my head around IIS.
>
> So if you can help me I will much appreciate it. I have a login page with a hyperlink on it that directs to a page for new users to enter their details. When you click on it the the browser does not go past the login page. I understand that it should not let you past the logon page unless the username and password agree with those setup in web.config (i will use a database for storing these later as I realise its the best way to do it)
>
> Can you help me to get the register new user page up from the login page.
>
> Is this an IIS issue, do I need to add something to web.config.
>
> The manuals dont explain this very well to me.
>
> Thank
>
> David
>
> ---
> Posted using Wimdows.net NntpNews Component -
>
> Post Made from [url]http://www.DotNetJunkies.com/newsgroups[/url] Our newsgroup engine supports Post Alerts, Ratings, and Searching.
>ranganh Guest



Reply With Quote

