Tagged Questions

3
votes
2answers
131 views

Subdomains and Logins

If you multiple subdomains e.g.: sub1.domain_name.com sub2.domain_name.com Is there a way to have a user be able to log into both of these without issues and double login issue? The …
3
votes
4answers
279 views

ASP.NET Login control without a Username

Is it possible to use the standard ASP.NET login control, but just ask the user for a password? I am using a template, but the runtime complains that; Login1: LayoutTemplate does not contain an …
1
vote
5answers
100 views

Best method to block repeated login requests w/out a database?

I'm trying to write an improved password reset function for one of our public facing websites and in addition to a better captcha I wanted to flag a username that attempts to login w/ no success x …
0
votes
1answer
27 views

Login control - error

Hello everybody! There is a Login control on my ASP.NET (2.0) page. I handle LoggingIn event like this: protected void Login1_LoggingIn(object sender, LoginCancelEventArgs e) { // go to database …
0
votes
3answers
43 views

long term cookie

I'm looking for a way for users to be able to connect to my application easily, but rarely. What I want to do is be able to store a cookie with a 1 year life on the user's computer. If they access …
0
votes
1answer
49 views

ASP Login control does not work inside a Sitecore 6 sublayout

In Sitecore 6, I have created a sublayout that has an asp:login control. For some reason, it doesn't work when I add it to the layout of a page. The page simply posts back, but doesn't log me in. I …
0
votes
1answer
65 views

How do you delete the ?ReturnToUrl query string on log out?

I have this in my LoginControl.ascx code behind: protected void Logout_Click(object sender, EventArgs e) { FormsAuthentication.SignOut(); Session.Abandon(); …
0
votes
2answers
283 views

Broken ASP.Net Login Control

Help! I'm using the ASP.Net Login control on a Login page, but the Login button no longer appears to be working and the Authenticate event is not firing. On clicking Log In, the page just returns to …
0
votes
2answers
396 views

Get access to ASP.Net CreateUserWizard buttons

Hi, I'm using a CreateUserWizard on my register page. The Sign Up button is part of a CustomNavigationTemplate. I need to set the Sign Up button as the default button of a ASP:Panel, but can't do …
0
votes
1answer
187 views

Can I put custom code into the standard DotNetNuke Login?

Where can I find the function that handles the login for DNN? I would like to add custom features to the login and I don't see the function in Login.ascx.vb (unless I missed it). There is a tag and …
0
votes
2answers
104 views

ASP.NET login control

Hello all, I intend to use membership.authentication/authorization API from ASP.NET 2.0 in in ASP.NET 3.5 web app. However, when I implement the LoggedIn method for a login component as below: …