vote up 3 vote down star

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 IEditableTextControl with ID UserName for the username.

My current thinking, is to add the control with style="display:none;" which seems lame. The existing project already uses FormsAuthentication, so plan B might be to roll my own Authentication method.

Update
I have a 2 step login process. Step 1: "Who are you?" and Step 2: "What is your password?"

flag

Updated so that everyone who answers can see the reason why you're doing what you're doing. – George Stocker Jun 15 at 13:40
You failled. Step 1: "Who are you?" Step 2: "What is your password?" – Ian Quigley Jun 15 at 13:43
That's a usability problem. What happens if they get their Username wrong? Why separate the two? – George Stocker Jun 15 at 13:50
@Gortok - why are you getting so upset? Don't downvote because your wrong. – Ian Quigley Jun 15 at 14:08
I'm wrong that it's a usability issue? I'd better go tell the myriad of sites out there that they've been doing it wrong all these years. Hang on. – George Stocker Jun 15 at 14:13
show 2 more comments

4 Answers

vote up 4 vote down check

I'd sure style it with display:none long before rolling my own.

link|flag
+1 Currently the best solution so far. Also can't use a hidden control either :( – Ian Quigley Jun 15 at 13:23
vote up 1 vote down

I haven't tested this, and it may sound a little silly, but you might be able to write a wrapper for the login control, like a UserControl with a LoginForm as a property - Then use the Init event to assign values from the controls you create to update the values onto the LoginForm (property)

If the property doesn't work, you might be able to put it on the page, but make it hidden.

link|flag
vote up 3 vote down

What functionality do you want from the Login Control? I assume your rolling your own authentication mechanism? Are you really going to gain a lot by reusing the login control? If so set the style to display:none.

Edit

If you identify the user on a previous page why not show a disabled textbox with the username or part of the username in it? I've seen some banks do this where on the first page you put the login and maybee the state you live in, then it validates that, then shows you the first three characters of the login name, and your site key and asks for your password.

link|flag
Yes, you're very close to what Im trying to do, except the UserId in this case is some crazy random string. I'll stick with the display:none, and if someone disables styles they'll see why I hid the field :) – Ian Quigley Jun 15 at 13:46
Makes sense in your case, you should also make the textbox readonly so if they disable styles they can't easily muck with it. – Josh Jun 15 at 13:52
+1 Readonly - good idea. I know that their user Guid is and am not reading from the field but it'll keep some messers at bay. – Ian Quigley Jun 15 at 14:12
vote up 1 vote down

Updated Answer:

Your best bet is to transform the login control into a label, and then display that over the empty textbox for their password.

Ye Olde Answer:

Why do you want to do that; what happens if two users have the same password?

link|flag
That's not an issue. In this case I am identifing the user on a previous page. – Ian Quigley Jun 15 at 13:22
-1. I dont think you get what im trying to do. Covering over a textbox control won't work in IE6. – Ian Quigley Jun 15 at 13:45
No, but it does work in ASP.NET on the server side. – George Stocker Jun 15 at 13:51
Would you use online banking if they used floating div's to cover textboxes that had a GUID in them? – Ian Quigley Jun 15 at 14:09
Quite simply, (though I hate saying never), it's VERY RARELY a good idea to separate the login from the password. If you must have them re-enter their password, then show their login above it as a label or as bolded Text, so they're at least sure of who they're logged in as (especially if multiple family members use that bank). – George Stocker Jun 15 at 14:12
show 13 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.