Wednesday, March 14, 2012

HTML5 Form Validation

http://stephenwalther.com/blog/archive/2012/03/13/html5-form-validation.aspx?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+StephenWalther+%28Stephen+Walther%29

clip_image001

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Required Demo</title>
</head>
<body>

    <form>
        <label>
            First Name:
            <input required title="First Name is Required!" />
        </label>
        <label>
            Last Name:
            <input required title="Last Name is Required!" />
        </label>
        <button>Register</button>
    </form>

</body>
</html>

Page Inspector in an MVC Application in Visual Studio 11 Beta

Footer

http://www.asp.net/mvc/tutorials/mvc-4/using-page-inspector-in-an-mvc-application-in-visual-studio-11-beta

What is BrowserID and how does it work?

BrowserID lets you use your email address and a single password to sign in to any site that supports it
https://support.mozilla.org/en-US/kb/what-browserid-and-how-does-it-work


CreateAccount

Browser ID sign-in 3

ASP.NET: Integrating BrowserId and ASP.NET Membership With Your MVC Applicatio

http://www.eggheadcafe.com/tutorials/asp-net/b5080f5a-b9e4-4579-bcdd-2147261f63e2/aspnet-integrating-browserid-and-aspnet-membership-with-your-mvc-application.aspx

BrowserID is a distributed system that allows users to use their email address as the login name and password. It is much simpler than OpenID, and also much easier for developers to integrate into their web sites. There is also no need to store passwords or password hashes, since all authentication is performed by the offsite provider.