kbAlertz.com is proud to announce the ability to let you host your own sign-up form, on your website, for your users. When a user fills out the sign-up form, they will be transfered to kbAlertz.com, their account will be created, and they will receive an e-mail notification that their account was created.
For the technically inclined, all you need to do is post a form to http://www.kbAlertz.com/PartnerSignup.aspx with the following field values.
- email (the users e-mail to sign-up)
- partnerID (given to you by kbAlertz.com)
- isHTML (possible values "Text" or "HTML")
- Technology (comma delimited technology list)
The numeric list of technologies that you'll need to include in the from post can be found here.
http://www.kbalertz.com/webmaster/TechnologyList.aspx
We have provided two samples for you to use as a template. One is a larger page insert, and one is a banner. Both of these samples use ASP.NET as the Technology.
http://www.kbalertz.com/aspnet-kbalertz.htm (open source in notepad)
http://www.kbalertz.com/aspnet-kbalertz2.htm (open course in notepad)
The technologies can either be in a <input type="hidden" value=""> field or some partners choose to represent multiple technologies with a group of Check Boxes. If you prefer the latter, simply name all the check box items the same, with Values of the technology and the form will post it as a comma delimited string.
If everything you just read knocked you socks off, don't worry, it's not as hard as it sounds. Cut and paste either of the below HTML code blocks into your web page and it'll work just fine.
The sample HTML will allow you to create the sign-up form, and you're free to customize this to your desires. Through experimentation, we've found that using the kbAlertz.com screen shot is a nice way to let your users know they will be leaving your site, and in fact are signing up for a third party service. On most of our partner sites, we even put a little blurb (as in the sample) that the user will be transfered from your website to kbAlertz.com. When the process is complete, and the sign-up process is completed, the user will see a welcome screen explaining what just happened, and that they can check their e-mail to find a welcome notice from kbAlertz.com.
So now on to the good stuff. The technology to place this web form on your site is very simple. Basically what you're going to be doing is "posting" a web request to the kbAlertz.com PartnerSignup.aspx page. If you're not a technical person, don't let this scare you, it'll be easy to follow the directions.
Below you'll find two examples. First is a full example, of how you might display a kbAlertz.com sign-up form. Second, is the bare minimum that you need to setup a sign-up form. We believe you'll have better results using a form like the first example.
<TABLE ID="Table1">
<tr>
<td colspan="2">
Free Microsoft Knowledge Base Articles by E-mail
<HR width="98%" noShade SIZE="1">
</td>
</tr>
<TR vAlign="top">
<TD align="center" width="220">
<A href="http://www.kbAlertz.com" target="_new">
<IMG src="http://www.kbAlertz.com/images/buttons/kbalertz_screenshot.gif" vspace="5"
border="0"></A>
<BR>
<A href="http://www.kbalertz.com/terms.aspx" target="_new"><FONT size="1">Privacy
Policy</FONT></A>
</TD>
<TD width="*">
<table style="BORDER-COLLAPSE: collapse" borderColor="#111111" cellSpacing="0"
cellPadding="3" width="100%" border="0" ID="Table2">
<tr>
<td width="100%">
<A href="http://www.kbAlertz.com" target="_new">KB Alertz.com</A> monitors the
Microsoft Knowledge Base and emails subscribers informing them of updates and
additions.<br>
Enter your e-mail addres and click [Sign Up], to recieve [Insert Technology
Here] related articles in the Micrsoft Knowledge Base.</DIV>
</td>
</tr>
<tr>
<td width="100%">
<form id="kbAlertz" action="http://www.kbalertz.com/PartnerSignup.aspx">
<p>
<input type="hidden" name="PartnerID" value="YOURIDHERE" ID="PartnerID">
<input type="hidden" name="Technology" value="20,13,213" ID="Hidden1">
<input size="35" name="email" ID="Text1">
<BR>
<select name="isHtml" ID="Select1">
<option value="HTML" selected>HTML</option>
<option value="PLAIN">Plain Text</option>
</select>
<BR>
<input type="submit" value="Sign Up" NAME="Submit">
<BR>
Note, when you sign-up using this form you will be automatically
transfered to
<A href="http://www.kbAlertz.com" target="_new">KB Alertz.com</A>.
</p>
</form>
</td>
</tr>
</table>
</TD>
</TR>
</TABLE>
<form id="kbAlertz" action="http://www.kbalertz.com/PartnerSignup.aspx">
<input type="hidden" name="Technology" value="20,13,213" ID="Hidden1">
<input type="hidden" name="PartnerID" value="YOURIDHERE" ID="PartnerID">
<input size="35" name="email" ID="Text1">
<select name="isHtml" ID="Select1">
<option value="HTML" selected>HTML</option>
<option value="PLAIN">Plain Text</option>
</select>
<BR>
<input type="submit" value="Sign Up" NAME="Submit">
</form>