Tag Archives: html

23 Lessons from SharePoint Saturday the Conference

This past Thursday-Saturday, Alison, Nick, Ben and I repped SoftArtisans and OfficeWriter at the inaugural SharePoint Saturday The Conference. Between speaking engagements, vlogging, dance parties and running demos on OfficeWriter’s SharePoint integration, there wasn’t a whole lot of downtime, but as Sandy Ussia told me, “I’ll sleep next week.” (Plus, unless you have Freudian recall, sleeping makes for a boring blog post.) Many attendees and speakers have already published their recaps, but this one is coming to you fashionably late, in a fashionable list.

Claire:

1.       If you don’t have anything nice to say, look up. The cloud was definitely this conference’s hot topic, with everyone from Mary Jo Foley to Jeremy Thake to Joel Ward weighing in. One takeaway: Microsoft’s in-the-works Online Services Delivery Platform will bring all the hosted services into one infrastructure. Maybe it’ll be accessible through a browser-based tool bar, too. Continue reading 23 Lessons from SharePoint Saturday the Conference

The Poor Man’s Client-Side Authentication

Recently I had to whip up a quick Web page to disseminate some information requiring a semblance of security in the form of a user name and password. Furthermore, I had HTML and Javascript but no server-side scripting at my immediate disposal. What I came up with as a solution was this.

  • Create a form for entering user name and password. This doesn’t have to be any more complicated than two input fields:
<label>User name:</label>
<input type='text" id='username" />
<label>Password:</label>
<input type='password" id='password" />
  • Add a button to submit the form:
<input id="btnSubmit" type="button" value="Submit" onclick="javascript:go()" />

Continue reading The Poor Man’s Client-Side Authentication