vote up 0 vote down star

Problem: I want to create a custom log in control that posts securely to HTTPS without affecting other submit buttons on the page.

If I had been writing this in ASP.NET MVC or any other language for that matter, I would just create a new form tag with an form action="https://...". Now I'm stuck in a ASP.NET web forms site. That means that I can only have one forms tag in the entire page, thus ripping me off on that easy solution.

What have I tried?

  1. I've changed the pages entire form during pre render so that the action posts to a HTTPS dress. But as I stated before, this will make all other buttons on the page also submit via SSL. I don't want that.

  2. I've done practically the same thing using JavaScript. The nice thing about this is that I can bind the fiddeling of the action attribute to a specific button. The drawback is that If the user disables JavaScript or doesn't have support the user name and password will be submitted in clear text.

  3. A composite approach. I could use AJAX to load a page containing the control that uses JavaScript to change the post. That way the control won't even be rendered if the user doesn't have JavaScript and instead render a button that sends the user to a log in page.

The last alternative is the best choice in my situation but it gets complicated without going into details.

So my question is, Is there any other way of achieving a secure loginin control in ASP.NET without the use of JavaScript?

I've been searching my finger off for a solution to this problem without finding anything so if any one can crack this nut, kudos!

flag
No idea if this will work but what about separating the login control and presenting it in an iframe on the page? Would that enable you to have a second form without annoying ASP.NET? – Lazarus Oct 13 at 11:46
Check "Managing Multiple Forms" on msdn.microsoft.com/en-us/magazine/… – Viktor Jevdokimov Oct 13 at 11:51
Thanks Viktor I will check it out. But the problem is that we are using master pages. If I would go with the multiple form solution I wold need to change the hole site and that is just not feasible. I'm considering the iframe, will try that one. I think the designers will have to bend the developers way this time. – Gargamel Oct 13 at 12:50

3 Answers

vote up 1 vote down

The usual approach is to have a dedicated login page with only the <asp:Login> control contained on it to submit the form. Do you have a different set up to this?

If you have a dedicated login page then you can set the page to require SSL in web.config

<authentication mode="Forms">
    <forms loginUrl="~/login.aspx" slidingExpiration="false" timeout="500" requireSSL="true"/>
</authentication>

You can also authenticate client-side using the ASP.NET AJAX authentication services

link|flag
Interesting, do you have experience with the ASP.NET AJAX auth. services? or do you know if it supports HTTPS and how it handles a fallback scenario when the user doesn't have JS enabled? I couldn't find any information about that. – Gargamel Oct 13 at 13:02
vote up 1 vote down

There is no other solution that I have come across - this is one of the major issues with the web forms approach and a big plus for MVC. Web forms require you to have a dedicated sign in page that utilises HTTPS.

The second approach you outline is the easiest one to go with - as long as you are happy to allow users without JavaScript to log in over HTTP. You could have a link below your login saying something like "Secure login" that is hidden by JavaScript to give them the option.

link|flag
Yes, that is the drawback, that the ones wihout JS won't get seruce connections – Gargamel Oct 13 at 12:32
vote up 2 vote down

Can't you just move your control, with it's own form, outside of the <form runat="server"> section?

<form method="post" action="https://www.example.com/securepage.aspx">
    <ui:securelogincontrol id="SecureLogin" runat="server" />
</form>

<form runat="server">
    <!-- all the stuff that requires a webform -->
</form>
link|flag
You cannot do this - fail! – RobW Oct 13 at 11:51
@RobW: Yes you can! I've done it a zillion times. – Luke Oct 13 at 11:52
Make plain HTML within first form and manage it as old days ASP (no server controls). – Viktor Jevdokimov Oct 13 at 11:54
RobW fail, sample is almost good. – Viktor Jevdokimov Oct 13 at 11:55
@Victor: Almost good? It's fine to have your own user controls inside a plain HTML form, as in my example, so long as those user controls don't require any webforms functionality. – Luke Oct 13 at 11:58
show 4 more comments

Your Answer

Get an OpenID
or

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