Authentication - 2 Separate Logins For Application?

Jul 21, 2010

I need to have 2 separate logins for my asp.net web site. Firstly I need to block access to the site entirely and show an unstyled log-in page (so it doesnt show the layout of the site).

This login is only needed whilst the website is in development.

Secondly, I need another login for a "members area" of the site. This is part of the functional site and will be permanent.

I'm at a loss as how to manage these 2 logins. I had first thought of using Windows authentication to allow preview access to the site and then forms authetication for the members part but according to IIS7 I "cant run Challenge based and Log-in redirect based authentication simultaneously".

View 4 Replies


Similar Messages:

How To Allow Multiple Logins With Forms Authentication

Feb 16, 2010

I have a problem with membership authentication. I have two websites, website1 and website2, and both of them uses forms authentication with SQL membership provider (SQLEXPRESS). I have two scenarios:

Case 1:don't publish the website1 and try to login website1 with user1 -->Works ok
don't publish the website2 and try to login --> it displays the previously logged in user (Website1 user)-->Perfect

Case 2:publish the website1 and login-->works ok
publish the website2 and try to login--> it does not show up the site1's logged in user (No idea why)

then login into website2 and open website1-->it does not show up the website2 logged in user or any user...It looks like something wrong with cookies....

my web.config looks like this:<authentication mode="Forms">
<forms loginUrl="~/LogOn/LogOn" timeout="2880" protection="All"/>
</authentication> [code]....

View 2 Replies

Checking Of Facebook Logins In Web Application Using C#?

May 19, 2010

here i want to check facebook user id and password in my application. if facebook userid and password is correct, go to another page. if not, stay in that page only.

View 1 Replies

C# - Regular Logins And ActiveDirectory Logins In The Same .NET App?

Feb 16, 2011

I currently have an app which using Active Directory for authentication. In other words, the IIS virtual directory is setup Active Directory authentication and I do no have to deal with it at all. If you are on the domain, you can get in.

Some customers now also want to add a feature where they can log in using a standard userid/password combo. The scenario being a contractor coming in for a few days with their laptop and need access to the app. There is no point of creating an Active Directory account for such a person.

View 4 Replies

Licensing - Secure An Application Using Limit For Number Of Logins?

Mar 23, 2011

I am trying to find a solution to control the number of logins on asp.net application. I need to install the application in the client server, and set the number of licences. e.g. only 10 users are allowed to access the app.

Every time someone tries to login I need to check how many user are logged in, compare with the total allowed then authorize that user to proceed.

I tried with Certificate, but I couldn't see where to match the number of logged in users with the max number of allowed user.

Also I would like to use the IP address as identifier, then if I open 3 browser windows, it count only one user logged.

Basically this web application will be sold by licences. We need to control the logins per computer, and not per user, and block logins if the limit of logins are reached.

View 3 Replies

Access Forms Authentication From Separate HTTP Handler?

Jan 2, 2011

I'm just reading about implementing my own HTTP handler for ASP.NET 4.0 and IIS7. This looks really cool. I want special processing for ZIP files and it seems like an HTTP handler is the perfect solution.However, what's giving me trouble is that the handler must be in a separate assembly. So how can I access the rest of my application from this assembly?Specifically, I'd like to determine if the user is authenticated and redirect them to the login page if they are not. But User.Identity.IsAuthenticated, etc. will not be available from my handler.(Yes, I know there are ways to approach this without an HTTP handler but they don't seem appropriate for my specific needs.)

View 1 Replies

Security :: Two Separate Authentication And Authorization In A Single Website?

Jul 8, 2010

I have a web application that requires two separate authentication and authorization.

In the root webconfig i configure the security for authenticating and authorizing public users

I also need authentication and authorization for the back end. That is the administrator who will manage the web application.

For this i have a subdirectory "admin" that will contain all the functionality for the back end. In the "admin" subdirectory i have a second web.config and i tried to add all the security for the administrator but it does not let me

Is it possible to have to separate authorization and authentication for a single web application. All the details will be save in microsoft's sql tables generate (for example aspnet... tables)

View 3 Replies

Drawback To Creating A Separate IIS Application Pool For Each Website / Application?

Jan 5, 2010

Currently, on our production IIS web farm, we host about 15 applications in a single App Pool (Default App Pool). There are two websites and about 13 virtual directories.A colleague has recommended that we change our IIS configuration so each application is a separate App Pool (with identical settings).

Is there any drawback or potential issues to doing this?Is it possible that ASP.NET applications could have been built with the requirements that they are all within the same App Pool?

View 2 Replies

How To Place Aspx-files In Separate Web Application Projects In One Solution

Oct 21, 2010

We have been building ASP.Net websites for many years. During this time we gathered a lot of knowledge of ASP.Net. We know what to use, a what not. One problem is still, persistently, bugging us. I hope to solve this for once and for all.

We have a fairly large solution with lots of aspx-files. All aspx-files reside in one Web Application Project. This single big WAP needs to be split in multiple smaller projects.

There are a number of ways to accomplish this, but I am still unsure what the best way would be. We use ASP.Net 4.0 and Visual Studio 2010 Premium.

This is our current work-around (which we do not like)

[code]....

View 2 Replies

Configuration :: IIS6 Virtual Directory And Separate Application Pool?

Feb 17, 2011

Our website has all of the publicly accessible pages at the root and private pages (login required) in a folder below the root (call it "private").Private pages are accessed as

www.oursite.com/private/somepage.aspx.I want to run the pages in the private folder in a separate application pool without changing the URL for private users.I tried making the private folder a virtual directory but then the pages in the private folder did not render(I think because it did not find a web.config in the private folder).Is the answer to simply put a copy of the web.config that resides at the root in the private folder or is that problematic?

View 4 Replies

DataSource Controls :: Display Results From Two Separate Tables In Two Separate Databases?

Jan 14, 2010

I have access to two seperate databases (mySQL) located on two servers. I need to get the data, link the tables on a key field and display the results in a datagrid. My challenge is that if the search criteria changes for the display it affects rows returned from on table and should thus automatically affect the linked table and resulting data returned.

what the best approach would be to achieving this? So far I have set up a dataset with a dataadapter and table for each connection and then linked the tables in the dataset. The problem that I'm having is getting the linked resultsets to work.

On my form I have the datagrid with two Objectdatasources one for each dataadapter and i believe that's where I'm going wrong...

View 1 Replies

MVC :: How To Separate Project Into Separate Layers

Feb 2, 2010

I am beginner to ASP.NET MVC.

We are doing project in Asp.Net MVC and Nhibernate.

How to seperate my project in to layers ? how to design classes ?

should i followany patterns ? repository patterns ?

View 3 Replies

Session In Same PC With 2 Logins To The System?

Dec 19, 2010

What i want to ask is if a user has 2 accounts and
1)Log with the first account and a session variable is assigned, let's say var1
2)Maintaining his account as logged he logs in with another account on another page and again a session variable with name var1 is assigned.
Now the question is.Will the session on the user's first login will be changed?
Or this time the session behaves more like an expanded viewstate?
Remember the user is logging form the same computer,same open browser.

(i should be testing this but unfortunately VS2003 here).

View 11 Replies

Preventing Multiple Logins?

Nov 24, 2010

I'm using the "cache tecnique" to prevent multiple logins. Reading in this forum I have read the following code:

Global.asax

[Code]....

Login.aspx
[Code]...This code works fine, If the user is already logged the second login is not permitted. But....

But if I make the logout (destroing all my session variables) and I try to login a second time... it's not possible, I read that the user is already logged!!I have also tried to clear the cache after the logout but nothing changs, even if it is illogic because the code must work even if I don't do the log off...

View 23 Replies

Security :: Only Allow 2 Logins Per UserAccount?

Aug 24, 2010

I am sitting with a senario where the client wants a User account only to be logged-on a maximum of 2 concurrent sessions. I am just putting this out to please ask the pro's what ways there are to do this?

I know that one way is to write the Userinfo into a database table ie. UserName,IpAddress and some other usefull info but then when it comes to the time when the user just closes the browser then how am i going to update the database table?

View 2 Replies

C# - How To Prevent Multiple Logins Of Same User Id

Apr 8, 2010

how to prevent multiple user to be logged in at a time using a user id ?

I searched the internet and found some ways but somehow they do not work in these situations:

If javascript in brower is turned off.

If user do not click logout and directly close brower.

View 4 Replies

Security :: Restricting Multiple Logins?

Feb 14, 2011

I have to allow only single user to access the site. We should not allow the same to user to access from another browser.

View 2 Replies

Prevent Multiple Simultaneous Logins?

Feb 11, 2011

I am trying to prevent multiple simultaneous logins in my web application. I want to signout all/any previous authentications of a user when they login. Such that the current login remains the only one.

How do I go about calling FormsAuthentication.SignOut() for a particular user to invalidate any existing authentications.I have tried searching everywhere but no answers, only theories.

View 2 Replies

MVC :: How To Show Logins In A Modal Dialog

Nov 22, 2010

What is the easiest way to show logins in a modal dialog? I'd prefer using JQuery but whatever will show up the login page (in a partial?) whenever i decorate a method with [Authorize] would be great.

Ive been searching for the past couple hours and i cant find anything useable.

View 6 Replies

Looking For Authentication Advice For .NET MVC 3 Application

Nov 2, 2010

I have a web application that will be used by the public. This application has a login credentials requirement.

I don't want to create yet another site that you have to create a custom username/password combination unless you really want too. I would like to support 3rd party logins like Facebook, Twitter, etc...

In the end this website could run in the Azure cloud as well so I am open to anything special to that.

One thing to note is the Microsoft Membership Provider that is part of ASP.NET is a great way to have custom login/passwords with a nice integration into MVC code. What I would love is that Provider opened up to allow 3rd party logins.

View 1 Replies

Security :: Authentication In Web Application?

Jul 13, 2010

I have seen some articles about different types of authentication in online. But i have not used any thing particular.I build a web application that user can register and login an after that.In that application when the user comes to loginpage and enter the user name and password and on click of the login button,the validation is done against the data in DataBase. So i am not getting the any idea of form level authentication with the user details in the webconfig file. For what type of applications we use this type of authentication. Can anybody help to get an idea about this authentication.

View 3 Replies

Web Forms :: Prevent Multiple Logins For Same User?

Jul 17, 2015

I just want to detect who came to login into site and if same login already logged in ,if same login previously exits then we need to logout the previous session , how to do it using asp.net c#

View 1 Replies

Iis - Configure Application To Use Two Authentication Methods?

Dec 20, 2010

I am new to ASP.NET development and moreover I am only extending an existing application which i did not create.

I have a working ASP.NET application which uses "Forms authentication" throughout all its pages. I have added a new webservice in a subfolder "webservicesDummy.asmx". This webservice works fine but because it should be called by an external application which can't authenticate through a form, i need to enable "Integrated Windows Authentication (Basic Authentication or Digest Authentication)" ONLY for the subfolder "webservices".

I tried to configure it in IIS but it did not work. So that i can set a different authentication method i have to create the folder "webservices" as an "Application". But if i do so then my function stops working with the error "Could not create type 'Dummy'."

Is it possible to have one web application and to authentication methods ? If yes how is it configured in IIS ?

Or what would be the better way if i need ONLY one page (webservice) to use a different authentication then the rest of my application.

PS: I use Windows 2008 Server and the app runs on .NET Framwork 2.0

View 1 Replies

C# - Using Forms Authentication In Application But It Is Not Working

Feb 12, 2010

Below is my code for forms authentication in asp.net but some time it is not working means some time user is not logged in

FormsAuthentication.SetAuthCookie(authentificationString, rememberLogin);

string cookieName = FormsAuthentication.FormsCookieName;
HttpCookie authCookie = System.Web.HttpContext.Current.Request.Cookies[cookieName];[code]....

It is working fine in my local machine but when I deploy on my server then it is not working.is it any iss setting or something else..
what I need to do for this.below is web.config code and local machine having IIS 6.0 and Server having IIS 7.0

View 2 Replies

Security :: Passport Authentication In Web Application?

Jul 12, 2010

Has Passport authentication been removed from ASP.NET 4? It doesn't appear in the documentation anymore, I can't find the site to download it... It seems like Windows Live ID is replacing it, is it correct?

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved