<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:copyright="http://blogs.law.harvard.edu/tech/rss" xmlns:image="http://purl.org/rss/1.0/modules/image/">
    <channel>
        <title>HTML / CSS / DHTML</title>
        <link>http://blog.crowe.co.nz/blog/category/33.aspx</link>
        <description>HTML / CSS / DHTML</description>
        <language>en-NZ</language>
        <copyright>Chris Crowe</copyright>
        <managingEditor>blog@crowe.co.nz</managingEditor>
        <generator>Subtext Version 1.9.4.0</generator>
        <item>
            <title>Windows Vista Gagdet - Example of talking to SQL Server</title>
            <link>http://blog.crowe.co.nz/blog/archive/2007/04/06/696.aspx</link>
            <description>&lt;P&gt;I have created a simple example of a Windows Vista Gadget that will talk to SQL Server using OLEDB with ADO.&lt;/P&gt;
&lt;P&gt;This code is very similar to code that one would have used in the past with writing code for ASP pages.&lt;/P&gt;
&lt;P&gt;The code is written in Javascript and DHTML.&lt;/P&gt;
&lt;P&gt;Basicall the code works like this:&lt;/P&gt;
&lt;P&gt;The gadget has an HTML body tag and we assign an onload event to it to trigger our Javascript code which will talk to SQL Server and render all the categories from the Northwind database.&lt;/P&gt;&lt;FONT color=#0000ff size=2&gt;
&lt;P&gt;&lt;&lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;body&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#ff0000 size=2&gt;scroll&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;="no"&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#ff0000 size=2&gt;onload&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;="loadMain()"&gt;&lt;/P&gt;&lt;/FONT&gt;
&lt;P&gt;Our simple code in the loadMain event is as follows:&lt;/P&gt;&lt;FONT color=#0000ff size=2&gt;
&lt;P&gt;function&lt;/FONT&gt;&lt;FONT size=2&gt; loadMain()&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&lt;FONT color=#000000&gt;{&lt;BR&gt;&lt;/FONT&gt;var&lt;/FONT&gt;&lt;FONT size=2&gt; serverName = &lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"server"&lt;/FONT&gt;&lt;FONT size=2&gt;;&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;var&lt;/FONT&gt;&lt;FONT size=2&gt; database = &lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"northwind"&lt;/FONT&gt;&lt;FONT size=2&gt;;&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;var&lt;/FONT&gt;&lt;FONT size=2&gt; username = &lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"sa"&lt;/FONT&gt;&lt;FONT size=2&gt;;&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;var&lt;/FONT&gt;&lt;FONT size=2&gt; password = &lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"-"&lt;/FONT&gt;&lt;FONT size=2&gt;; &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color=#0000ff size=2&gt;if&lt;/FONT&gt;&lt;FONT size=2&gt; (password == &lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"-"&lt;/FONT&gt;&lt;FONT size=2&gt;)&lt;BR&gt;{&lt;BR&gt;data = &lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"this is a sample - please configure the servername, database, username and password variables in \\js\\sql.js"&lt;/FONT&gt;&lt;FONT size=2&gt;;&lt;BR&gt;}&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;else&lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;{&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;    var&lt;/FONT&gt;&lt;FONT size=2&gt; oSqlConnection = &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;new&lt;/FONT&gt;&lt;FONT size=2&gt; ActiveXObject(&lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"adodb.connection"&lt;/FONT&gt;&lt;FONT size=2&gt;); &lt;BR&gt;    oSqlConnection.open(&lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"Provider=sqloledb;Data Source="&lt;/FONT&gt;&lt;FONT size=2&gt; + serverName + &lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;";Initial Catalog="&lt;/FONT&gt;&lt;FONT size=2&gt;+database+&lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;";User Id="&lt;/FONT&gt;&lt;FONT size=2&gt;+username+&lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;";Password="&lt;/FONT&gt;&lt;FONT size=2&gt;+password+&lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;";"&lt;/FONT&gt;&lt;FONT size=2&gt;);&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;   var&lt;/FONT&gt;&lt;FONT size=2&gt; oRecordSet = oSqlConnection.Execute(&lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"SELECT CategoryID, CategoryName from Categories"&lt;/FONT&gt;&lt;FONT size=2&gt;);   &lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;   var&lt;/FONT&gt;&lt;FONT size=2&gt; data = &lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;""&lt;/FONT&gt;&lt;FONT size=2&gt;;&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;   while&lt;/FONT&gt;&lt;FONT size=2&gt; (oRecordSet.eof == &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;false&lt;/FONT&gt;&lt;FONT size=2&gt;)&lt;BR&gt;   { &lt;BR&gt;        data = data + oRecordSet(1) + &lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"&lt;br&gt;"&lt;/FONT&gt;&lt;FONT size=2&gt;;&lt;BR&gt;        oRecordSet.moveNext();&lt;BR&gt;    }&lt;BR&gt;   oRecordSet.close();  &lt;BR&gt;   oSqlConnection.close();&lt;BR&gt;   }&lt;BR&gt;    document.getElementById(&lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"data"&lt;/FONT&gt;&lt;FONT size=2&gt;).innerHTML = data;|&lt;BR&gt;}&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;This code shows a simple way to to talk to SQL Server, run a query and then render the results to an HTML tag.&lt;/P&gt;
&lt;P&gt;You can download this code &lt;A href="http://blog.crowe.co.nz/attachments/sql.gadget"&gt;from here&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;For you to run this code there are a few things you will need to do first.&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Have a SQL Server available which has the &lt;STRONG&gt;Northwind&lt;/STRONG&gt; database ( you can change the connection string and query )&lt;/LI&gt;
&lt;LI&gt;Change the server variable to the server that is running SQL Server&lt;/LI&gt;
&lt;LI&gt;Change the database if required&lt;/LI&gt;
&lt;LI&gt;Chnage the username if required&lt;/LI&gt;
&lt;LI&gt;Change the password&lt;/LI&gt;&lt;/OL&gt;
&lt;P&gt;This is just an example and is really up to you how you may use it. I hope it helps with your gadget development.&lt;/P&gt;&lt;img src="http://blog.crowe.co.nz/blog/aggbug/696.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Chris Crowe</dc:creator>
            <guid>http://blog.crowe.co.nz/blog/archive/2007/04/06/696.aspx</guid>
            <pubDate>Fri, 06 Apr 2007 19:11:00 GMT</pubDate>
            <wfw:comment>http://blog.crowe.co.nz/blog/comments/696.aspx</wfw:comment>
            <comments>http://blog.crowe.co.nz/blog/archive/2007/04/06/696.aspx#feedback</comments>
            <slash:comments>12</slash:comments>
            <wfw:commentRss>http://blog.crowe.co.nz/blog/comments/commentRss/696.aspx</wfw:commentRss>
        </item>
        <item>
            <title>A great colour wheel for those of us who must deal with colours and combinations of colours.</title>
            <link>http://blog.crowe.co.nz/blog/archive/2007/04/04/695.aspx</link>
            <description>&lt;P&gt;I came across a great tool for looking at colours and their complimentary colours, infact six types of compilimentary colours.&lt;/P&gt;
&lt;TABLE cellSpacing=5 cellPadding=0 border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;IFRAME src="http://www.siteprocentral.com/cgi-bin/feed/feedload.cgi?id=feed" frameBorder=0 width=762 scrolling=no height=406&gt;&lt;/IFRAME&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD style="FONT: 10px Arial, Helvetica, sans-serif" align=middle&gt;
&lt;HR width=760 noShade SIZE=1&gt;
Place this &lt;A href="http://www.siteprocentral.com/html_color_code.html"&gt;HTML Color Code&lt;/A&gt; tool on your website free. | Professional &lt;A href="http://www.turnkey-websites-opportunity.com/"&gt;Turnkey Websites&lt;/A&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As you can see you can use the colour wheel live on this site, but you may also want to check out the site owners site at &lt;A href="http://www.siteprocentral.com/html_color_code.html"&gt;http://www.siteprocentral.com/html_color_code.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;This is a great tool and I hope people will find it usefull.&lt;/P&gt;&lt;img src="http://blog.crowe.co.nz/blog/aggbug/695.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Chris Crowe</dc:creator>
            <guid>http://blog.crowe.co.nz/blog/archive/2007/04/04/695.aspx</guid>
            <pubDate>Wed, 04 Apr 2007 20:13:00 GMT</pubDate>
            <wfw:comment>http://blog.crowe.co.nz/blog/comments/695.aspx</wfw:comment>
            <comments>http://blog.crowe.co.nz/blog/archive/2007/04/04/695.aspx#feedback</comments>
            <wfw:commentRss>http://blog.crowe.co.nz/blog/comments/commentRss/695.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Windows Vista Gadgets</title>
            <link>http://blog.crowe.co.nz/blog/archive/2007/04/01/694.aspx</link>
            <description>&lt;P&gt;I have been playing aroung with Windows Vista Gagets lately and have currently written about 10. Some are for my work - simple things like who is on Helpdesk duty today, and another for our IS Severity system that will show up planned outages and unplanned outages, colour coded based on the rating of the problem. This is similar to an RSS feed except the data is always live and not cached so that when a job is closed it is removed from the list.&lt;/P&gt;
&lt;P&gt;Another is the Weather Gadget for &lt;A href="http://weather.cobbnz.com/"&gt;http://weather.cobbnz.com&lt;/A&gt;, a collegue at works owns the site and I have written the Web Site UI and a few tools. This has become quite popular in the last few days since it was uploaded to &lt;A href="http://gallery.live.com/"&gt;http://gallery.live.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Another 5 are simple radio station gadgets for New Zealand radio stations &lt;A href="http://www.newstalkzb.co.nz"&gt;News Talk ZB&lt;/A&gt;, &lt;A href="http://www.radiopacific.co.nz"&gt;Radio Pacific&lt;/A&gt;, &lt;A href="http://www.morefm.co.nz"&gt;MoreFM&lt;/A&gt;, &lt;A href="http://www.zm.co.nz"&gt;ZM&lt;/A&gt;, and &lt;A href="http://www.rdu.org.nz"&gt;RDU&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt; The weather and the radio station gadgets are all available from live.com and clicking on my profile link will take you to a page where they all are.&lt;/P&gt;&lt;IMG src="/images/gadgets.gif"&gt; 
&lt;P&gt;My Gadgets&lt;BR&gt;&lt;A href="http://gallery.live.com/Author.aspx?a=290b49b8-95bc-49a1-b4fe-919b6ea4edd5&amp;l=1"&gt;http://gallery.live.com/Author.aspx?a=290b49b8-95bc-49a1-b4fe-919b6ea4edd5&amp;l=1&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;For those looking into writing your own gadgets see these resources&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Tutorial on how to write a gadget from scratch&lt;BR&gt;&lt;A href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/sidebar/sidebar/overviews/gdo.asp"&gt;http://msdn.microsoft.com/library/default.asp?url=/library/en-us/sidebar/sidebar/overviews/gdo.asp&lt;/A&gt; 
&lt;LI&gt;A number of code project articles all about gadgets&lt;BR&gt;&lt;A href="http://www.codeproject.com/gadgets/"&gt;http://www.codeproject.com/gadgets/&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;Hint:&lt;/STRONG&gt; If you want to see the source for any gadget, download it, and then rename from .gadget to .zip and you have all the source code.&lt;/P&gt;&lt;img src="http://blog.crowe.co.nz/blog/aggbug/694.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Chris Crowe</dc:creator>
            <guid>http://blog.crowe.co.nz/blog/archive/2007/04/01/694.aspx</guid>
            <pubDate>Sun, 01 Apr 2007 08:06:00 GMT</pubDate>
            <wfw:comment>http://blog.crowe.co.nz/blog/comments/694.aspx</wfw:comment>
            <comments>http://blog.crowe.co.nz/blog/archive/2007/04/01/694.aspx#feedback</comments>
            <slash:comments>5</slash:comments>
            <wfw:commentRss>http://blog.crowe.co.nz/blog/comments/commentRss/694.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Rounded Corners Demo</title>
            <link>http://blog.crowe.co.nz/blog/archive/2006/05/26/639.aspx</link>
            <description>&lt;P&gt;The following code will allow you to create rounded corners on your HTML pages. &lt;/P&gt;
&lt;P&gt;The output from the following HTML is like this:&lt;/P&gt;
&lt;P&gt;&lt;IMG src="/images/roundedcorners.gif"&gt;&lt;/P&gt;
&lt;P&gt;You can change the colour of the background by changing the &lt;STRONG&gt;background&lt;/STRONG&gt; attribute of the &lt;STRONG&gt;.bg-rounded-container&lt;/STRONG&gt;&amp;nbsp;class - currently set&amp;nbsp;to Orange.&lt;/P&gt;
&lt;P&gt;For a live demo &lt;A href="http://blog.crowe.co.nz/Samples/RoundedCorners.htm"&gt;click here&lt;/A&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: maroon"&gt;style&lt;/SPAN&gt; &lt;SPAN style="COLOR: red"&gt;type&lt;/SPAN&gt;="&lt;SPAN style="COLOR: blue"&gt;text/css&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;
 
.bg-rounded-container {
 BACKGROUND:  orange; 
 WIDTH: 400px; 
 POSITION: relative; 
 HEIGHT: 50px
}
 
.bg-rounded-content {
 FONT-FAMILY: Tahoma, "&lt;SPAN style="COLOR: blue"&gt;Arial Narrow&lt;/SPAN&gt;", sans-serif;
 font-weight: bold;
 font-size: 14pt;
 text-align: center;
 PADDING-RIGHT: 10px; 
 PADDING-LEFT: 10px; 
 PADDING-BOTTOM: 12px; 
 PADDING-TOP: 12px
}
.bg-rounded-top-left {
 FONT-SIZE: 0.1em; 
 BACKGROUND-IMAGE: url(/images/bg-rounded-corners.png); 
 WIDTH: 7px; 
 BACKGROUND-REPEAT: no-repeat; 
 HEIGHT: 7px
}
.bg-rounded-top-right {
 FONT-SIZE: 0.1em; 
 BACKGROUND-IMAGE: url(/images/bg-rounded-corners.png); 
 WIDTH: 7px; 
 BACKGROUND-REPEAT: no-repeat; 
 HEIGHT: 7px
}
.bg-rounded-bottom-right {
 FONT-SIZE: 0.1em; 
 BACKGROUND-IMAGE: url(/images/bg-rounded-corners.png); 
 WIDTH: 7px; 
 BACKGROUND-REPEAT: no-repeat; 
 HEIGHT: 7px
}
.bg-rounded-bottom-left {
 FONT-SIZE: 0.1em; 
 BACKGROUND-IMAGE: url(/images/bg-rounded-corners.png); 
 WIDTH: 7px; 
 BACKGROUND-REPEAT: no-repeat; 
 HEIGHT: 7px
}
.bg-rounded-top-left {
 BACKGROUND-POSITION: 0px 0px; 
 FLOAT: left
}
.bg-rounded-top-right {
 BACKGROUND-POSITION: 0px -7px; 
 FLOAT: right
}
.bg-rounded-bottom-right {
 BACKGROUND-POSITION: 0px -14px; 
 RIGHT: -1px; 
 BOTTOM: -1px; 
 POSITION: absolute
}
.bg-rounded-bottom-left {
 BACKGROUND-POSITION: 0px -21px; 
 LEFT: 0px; 
 BOTTOM: -1px; 
 POSITION: absolute
}
 
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;/&lt;SPAN style="COLOR: maroon"&gt;style type="text/css"&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;/&lt;SPAN style="COLOR: maroon"&gt;head&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: maroon"&gt;body&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: maroon"&gt;div&lt;/SPAN&gt; &lt;SPAN style="COLOR: red"&gt;class&lt;/SPAN&gt;="&lt;SPAN style="COLOR: blue"&gt;bg-rounded-container&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;      
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: maroon"&gt;div&lt;/SPAN&gt; &lt;SPAN style="COLOR: red"&gt;class&lt;/SPAN&gt;="&lt;SPAN style="COLOR: blue"&gt;bg-rounded-top-left&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;/&lt;SPAN style="COLOR: maroon"&gt;div&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;      
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: maroon"&gt;div&lt;/SPAN&gt; &lt;SPAN style="COLOR: red"&gt;class&lt;/SPAN&gt;="&lt;SPAN style="COLOR: blue"&gt;bg-rounded-top-right&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;/&lt;SPAN style="COLOR: maroon"&gt;div&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;      
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: maroon"&gt;div&lt;/SPAN&gt; &lt;SPAN style="COLOR: red"&gt;class&lt;/SPAN&gt;="&lt;SPAN style="COLOR: blue"&gt;bg-rounded-content&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;Rounded Corners Demo&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;/&lt;SPAN style="COLOR: maroon"&gt;div&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;      
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: maroon"&gt;div&lt;/SPAN&gt; &lt;SPAN style="COLOR: red"&gt;class&lt;/SPAN&gt;="&lt;SPAN style="COLOR: blue"&gt;bg-rounded-bottom-left&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;/&lt;SPAN style="COLOR: maroon"&gt;div&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;      
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: maroon"&gt;div&lt;/SPAN&gt; &lt;SPAN style="COLOR: red"&gt;class&lt;/SPAN&gt;="&lt;SPAN style="COLOR: blue"&gt;bg-rounded-bottom-right&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;/&lt;SPAN style="COLOR: maroon"&gt;div&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;    
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;/&lt;SPAN style="COLOR: maroon"&gt;div&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;    
&lt;/PRE&gt;&lt;img src="http://blog.crowe.co.nz/blog/aggbug/639.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Chris Crowe</dc:creator>
            <guid>http://blog.crowe.co.nz/blog/archive/2006/05/26/639.aspx</guid>
            <pubDate>Fri, 26 May 2006 09:04:00 GMT</pubDate>
            <wfw:comment>http://blog.crowe.co.nz/blog/comments/639.aspx</wfw:comment>
            <comments>http://blog.crowe.co.nz/blog/archive/2006/05/26/639.aspx#feedback</comments>
            <slash:comments>1</slash:comments>
            <wfw:commentRss>http://blog.crowe.co.nz/blog/comments/commentRss/639.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Microsoft Scripting Resources</title>
            <link>http://blog.crowe.co.nz/blog/archive/2005/09/25/284.aspx</link>
            <description>&lt;P&gt;I came across a number of cool scripting utilities today that may help others; these are:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;Do-It-Yourself Script Center Kit&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;Scriptomatic 2.0&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;TechNet Script Center Sample Scripts&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;WMI Code Creator v1.0&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;HTA Helpomatic&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;TechNet Script Center Sample Scripts&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;Technet Script Center&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;ADSI Scriptomatic&lt;/STRONG&gt; 
&lt;LI&gt;&lt;STRONG&gt;Tweakomatic&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;Do-It-Yourself Script Center Kit&lt;/STRONG&gt;&lt;/P&gt;
&lt;BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px"&gt;
&lt;P&gt;The Do-It-Yourself Script Center Kit includes all the materials you need to create your own version of the TechNet Script Center, either as stand-alone Web pages, stand-alone .vbs files, or as a .chm Help file. Included in the Kit are a database ( Microsoft Access ) of all the scripts found in the TechNet Script Center Script Repository as of January 2005, as well helper scripts for creating Web pages, .vbs files, and .chm files. &lt;/P&gt;
&lt;P&gt;The Kit also includes instructions for using these helper scripts.&lt;/P&gt;
&lt;P&gt;For more details see:&lt;BR&gt;&lt;A href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;amp;FamilyID=D187C9D7-FFA8-49CD-BB33-363DB8FA481E&amp;amp;sGuid=8c9e492e-9f9b-4f33-8bad-26c69ee9a42b&amp;amp;hash=P8DMHJ"&gt;http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;amp;FamilyID=D187C9D7-FFA8-49CD-BB33-363DB8FA481E&amp;amp;sGuid=8c9e492e-9f9b-4f33-8bad-26c69ee9a42b&amp;amp;hash=P8DMHJ&lt;/A&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;STRONG&gt;Scriptomatic 2.0&lt;/STRONG&gt;&lt;/P&gt;
&lt;BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px"&gt;
&lt;P&gt;A completely new version of the famous Scriptomatic, the utility that writes WMI scripts for you. (And, in the process, teaches you the fundamental concepts behind writing WMI scripts for yourself.) U&lt;/P&gt;
&lt;P&gt;nlike its predecessor, Scriptomatic 2.0 isn&amp;#8217;t limited to writing just VBScript scripts; instead, Scriptomatic 2.0 can write scripts in Perl, Python, or JScript as well. &lt;/P&gt;
&lt;P&gt;In addition, Scriptomatic 2.0 gives you a host of new output formats to use when running scripts, including saving data as plain-text, as a stand-alone Web page, or even as XML. &lt;/P&gt;
&lt;P&gt;Scriptomatic 2.0 handles arrays, it converts dates to a more readable format, and it works with all the WMI classes on your computer; on top of all that, it also writes scripts that can be run against multiple machines.&lt;/P&gt;
&lt;P&gt;For more details see:&lt;BR&gt;&lt;A href="http://www.microsoft.com/downloads/details.aspx?familyid=09DFC342-648B-4119-B7EB-783B0F7D1178&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?familyid=09DFC342-648B-4119-B7EB-783B0F7D1178&amp;amp;displaylang=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Incase you want the old 2002 version :&lt;BR&gt;&lt;A href="http://www.microsoft.com/downloads/details.aspx?familyid=9EF05CBD-C1C5-41E7-9DA8-212C414A7AB0&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?familyid=9EF05CBD-C1C5-41E7-9DA8-212C414A7AB0&amp;amp;displaylang=en&lt;/A&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;STRONG&gt;TechNet Script Center Sample Scripts&lt;/STRONG&gt;&lt;/P&gt;
&lt;BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px"&gt;
&lt;DIV class=DetailsContent id=overview&gt;Sample scripts found in the TechNet Script Center. The sample scripts are not supported under any Microsoft standard support program or service. You can, however, report issues and bugs by sending e-mail to &lt;A href="mailto:scripter@microsoft.com"&gt;scripter@microsoft.com&lt;/A&gt;.&lt;/DIV&gt;
&lt;DIV class=DetailsContent&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=DetailsContent&gt;For more details see:&lt;BR&gt;&lt;A href="http://www.microsoft.com/downloads/details.aspx?familyid=B4CB2678-DAFB-4E30-B2DA-B8814FE2DA5A&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?familyid=B4CB2678-DAFB-4E30-B2DA-B8814FE2DA5A&amp;amp;displaylang=en&lt;/A&gt;&lt;/DIV&gt;&lt;/BLOCKQUOTE&gt;
&lt;DIV class=DetailsContent dir=ltr&gt;&lt;STRONG&gt;&lt;BR&gt;HTA Helpomatic&lt;/STRONG&gt;&lt;/DIV&gt;
&lt;BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px"&gt;
&lt;P&gt;The HTA Helpomatic is a utility that helps script writers create HTML Applications (HTAs). HTAs enable you to provide a graphical user interface for your scripts, an interface that can include anything from list boxes to radio buttons to checkboxes. The HTA Helpomatic includes sample VBScript code and sample HTML code showing you how to do things like add a button to an HTA. Equally important, the Helpomatic also shows you how you can run a script any time that button is clicked. As an added bonus, the Helpomatic enables you to modify the scripts and HTML code and test those modifications in the utility itself.&lt;/P&gt;
&lt;P&gt;For more details see:&lt;BR&gt;&lt;A href="http://www.microsoft.com/downloads/details.aspx?familyid=231D8143-F21B-4707-B583-AE7B9152E6D9&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?familyid=231D8143-F21B-4707-B583-AE7B9152E6D9&amp;amp;displaylang=en&lt;/A&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;DIV class=DetailsContent dir=ltr&gt;&lt;STRONG&gt;WMI Code Creator v1.0&lt;/STRONG&gt;&lt;/DIV&gt;
&lt;BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px"&gt;
&lt;DIV class=DetailsContent dir=ltr&gt;
&lt;DIV class=DetailsContent id=overview&gt;The WMI Code Creator tool generates code that uses WMI to obtain management information or perform management tasks. You can use the tool to learn how to manage computers using WMI scripting and WMI .NET. The tool generates code that runs on the local computer, a remote computer, or a group of remote computers based on your selection from the Target Computer menu on the tool. You can also execute the generated code directly from the tool.&lt;BR&gt;&lt;BR&gt;The tool is meant to help IT Professionals quickly create management scripts and to help developers learn WMI scripting and WMI .NET. The tool helps take the complexity out of writing code that uses WMI and helps developers and IT Professionals understand how powerful and useful WMI can be for managing computers.&lt;BR&gt;&lt;BR&gt;Using the tool, you can query for management information such as the name and version of an operating system, how much free disk space is on a hard drive, or the state of a service. You can also use the tool to execute a method from a WMI class to perform a management task. For example, you can create code that executes the Create method of the Win32_Process class to create a new process such as Notepad or another executable. The tool also allows you to generate code to receive event notifications using WMI. For example, you can select to receive an event every time a process is started or stopped, or when a computer shuts down.&lt;BR&gt;&lt;BR&gt;The tool also allows you to browse through the available WMI namespaces and classes on the local computer to find their descriptions, properties, methods, and qualifiers.&lt;BR&gt;&lt;BR&gt;The code that creates the tool is also included in the download. The tool was created using WMI .NET, and the code for the tool can help developers understand how WMI .NET is used to create applications and manage information. Be sure to read the end-user license agreement that is included in the download.&lt;/DIV&gt;
&lt;DIV class=DetailsContent&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=DetailsContent&gt;For more details see:&lt;/DIV&gt;
&lt;DIV class=DetailsContent&gt;&lt;A href="http://www.microsoft.com/downloads/details.aspx?familyid=2CC30A64-EA15-4661-8DA4-55BBC145C30E&amp;amp;displaylang=e"&gt;http://www.microsoft.com/downloads/details.aspx?familyid=2CC30A64-EA15-4661-8DA4-55BBC145C30E&amp;amp;displaylang=e&lt;STRONG&gt;&lt;/STRONG&gt;&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV class=DetailsContent&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/BLOCKQUOTE&gt;
&lt;DIV class=DetailsContent dir=ltr&gt;&lt;STRONG&gt;Technet Script Center&lt;/STRONG&gt;&lt;/DIV&gt;
&lt;BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px"&gt;
&lt;DIV class=DetailsContent dir=ltr&gt;The TechNet script center is a repositaty specially tailed for scripting, there are columns and verything you need to learn how to write scripts for Windows is right there! &lt;/DIV&gt;
&lt;DIV class=DetailsContent dir=ltr&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=DetailsContent dir=ltr&gt;Find articles, documentation, webcasts, and even hands-on labs for all levels, right at your fingertips.&lt;/DIV&gt;
&lt;DIV class=DetailsContent dir=ltr&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=DetailsContent dir=ltr&gt;For more details see:&lt;BR&gt;&lt;A href="http://www.microsoft.com/technet/scriptcenter/default.mspx"&gt;http://www.microsoft.com/technet/scriptcenter/default.mspx&lt;STRONG&gt;&lt;/STRONG&gt;&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV class=DetailsContent dir=ltr&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/BLOCKQUOTE&gt;
&lt;DIV class=DetailsContent dir=ltr&gt;&lt;STRONG&gt;ADSI Scripomatic&lt;/STRONG&gt;&lt;/DIV&gt;
&lt;BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px"&gt;
&lt;DIV class=DetailsContent dir=ltr&gt;The ADSI Scriptomatic is designed to help you write ADSI scripts; that is, scripts that can be used to manage Active Directory or IIS.&lt;/DIV&gt;
&lt;DIV class=DetailsContent dir=ltr&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=DetailsContent dir=ltr&gt;The ADSI Scriptomatic also teaches you an important point about ADSI scripting: like WMI, there are consistent patterns to ADSI scripts. &lt;/DIV&gt;
&lt;DIV class=DetailsContent dir=ltr&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=DetailsContent dir=ltr&gt;For example, the ADSI Scriptomatic will help you write a script to delete a user account. It will also help you write scripts for deleting groups and organizational units. &lt;/DIV&gt;
&lt;DIV class=DetailsContent dir=ltr&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=DetailsContent dir=ltr&gt;And if you take a close look at the scripts for deleting different objects, you&amp;#8217;ll see something very interesting: theyre practical identical! &lt;/DIV&gt;
&lt;DIV class=DetailsContent dir=ltr&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=DetailsContent dir=ltr&gt;For more details see:&lt;BR&gt;&lt;A href="http://www.microsoft.com/technet/scriptcenter/tools/admatic.mspx"&gt;http://www.microsoft.com/technet/scriptcenter/tools/admatic.mspx&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV class=DetailsContent dir=ltr&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/BLOCKQUOTE&gt;
&lt;DIV class=DetailsContent dir=ltr&gt;&lt;STRONG&gt;Tweakomatic&lt;/STRONG&gt;&lt;/DIV&gt;
&lt;BLOCKQUOTE class=DetailsContent dir=ltr style="MARGIN-RIGHT: 0px"&gt;
&lt;P class=blurb&gt;Tweakomatic is a nifty new utility that writes scripts that enable you to retrieve and/or configure Windows and Internet Explorer settings. So what, you might say. Well, think about it. Because these are Windows Management Instrumentation (WMI) scripts, they can be used to configure settings &lt;I&gt;on remote computers&lt;/I&gt;. Need to change something on a remote computer? Then haul out Tweakomatic. And think about this: because Tweakomatic writes scripts, you could do something like run these scripts as logon or logoff scripts. In other words, you could quickly, easily, and automatically configure settings on any or all the computers in your organization. Tweakomatic is undoubtedly the single best thing Microsoft has released since Windows itself&lt;/P&gt;
&lt;P class=blurb&gt;For more details see:&lt;BR&gt;&lt;A href="http://www.microsoft.com/technet/scriptcenter/tools/twkmatic.mspx"&gt;http://www.microsoft.com/technet/scriptcenter/tools/twkmatic.mspx&lt;/A&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;img src="http://blog.crowe.co.nz/blog/aggbug/284.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Chris Crowe [IIS MVP]</dc:creator>
            <guid>http://blog.crowe.co.nz/blog/archive/2005/09/25/284.aspx</guid>
            <pubDate>Sun, 25 Sep 2005 22:59:00 GMT</pubDate>
            <wfw:comment>http://blog.crowe.co.nz/blog/comments/284.aspx</wfw:comment>
            <comments>http://blog.crowe.co.nz/blog/archive/2005/09/25/284.aspx#feedback</comments>
            <wfw:commentRss>http://blog.crowe.co.nz/blog/comments/commentRss/284.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Get ideas of keywords for your web sites</title>
            <link>http://blog.crowe.co.nz/blog/archive/2005/09/22/277.aspx</link>
            <description>&lt;P&gt;Get ideas for new keywords that can help you improve your relevance to queries that user submit to search engines&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Google&lt;BR&gt;&lt;/STRONG&gt;&lt;A href="https://adwords.google.com/select/KeywordSandbox"&gt;https://adwords.google.com/select/KeywordSandbox&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Example from Google&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;I used the following keywords:&amp;nbsp; &lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;Metabase, ADSI, Blog, iis, sharepoint, internet,information,services,ii5,iis6,Windows,Sharepoint&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;and got the following results ( Note: more results where returned that displayed below )&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;internet providers 
&lt;LI&gt;internet service providers 
&lt;LI&gt;internet access 
&lt;LI&gt;windows 
&lt;LI&gt;cable internet 
&lt;LI&gt;information 
&lt;LI&gt;internet 
&lt;LI&gt;services 
&lt;LI&gt;dial up internet 
&lt;LI&gt;internet banking 
&lt;LI&gt;internet roaming 
&lt;LI&gt;blog 
&lt;LI&gt;escort services 
&lt;LI&gt;windows media player 
&lt;LI&gt;windows xp upgrade 
&lt;LI&gt;cable internet service 
&lt;LI&gt;sash windows 
&lt;LI&gt;internet services 
&lt;LI&gt;dating services 
&lt;LI&gt;dial up internet access 
&lt;LI&gt;phone services 
&lt;LI&gt;cleaning services 
&lt;LI&gt;cheap internet service 
&lt;LI&gt;international internet 
&lt;LI&gt;nanny services 
&lt;LI&gt;hosting services 
&lt;LI&gt;internet radio 
&lt;LI&gt;information security 
&lt;LI&gt;windows server 
&lt;LI&gt;windows 98 upgrade 
&lt;LI&gt;windows 2000 
&lt;LI&gt;mailing services 
&lt;LI&gt;moving services 
&lt;LI&gt;management information system 
&lt;LI&gt;iis &lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;
&lt;HR id=null&gt;
Overture&lt;BR&gt;&lt;/STRONG&gt;&lt;A href="http://inventory.overture.com/d/searchinventory/suggestion/"&gt;http://inventory.overture.com/d/searchinventory/suggestion/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Example from Overture&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;I used the following key word:&amp;nbsp; &lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;IIS&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;and got the following results ( Note: more results where returned that displayed below )&lt;/P&gt;
&lt;P dir=ltr style="MARGIN-RIGHT: 0px"&gt;
&lt;TABLE cellSpacing=0 cellPadding=1 width=270 bgColor=#ffffff border=0&gt;
&lt;TBODY&gt;
&lt;TR align=left bgColor=#0066cc&gt;
&lt;TH colSpan=2&gt;&lt;FONT face=verdana,sans-serif color=#e8e8e8 size=2&gt;Searches done in August 2005&lt;/FONT&gt;&lt;/TH&gt;&lt;/TR&gt;
&lt;TR align=left bgColor=#999999&gt;
&lt;TH&gt;&lt;FONT face=verdana,sans-serif color=#e8e8e8 size=2&gt;Count&lt;/FONT&gt;&lt;/TH&gt;
&lt;TH&gt;&lt;FONT face=verdana,sans-serif color=#e8e8e8 size=2&gt;Search Term&lt;/FONT&gt;&lt;/TH&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;FONT face=verdana,sans-serif size=1&gt;&amp;nbsp;6481&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;A href="http://inventory.overture.com/d/searchinventory/suggestion/?term=iis&amp;amp;mkt=us&amp;amp;lang=en_US"&gt;&lt;FONT face=verdana,sans-serif color=#000000 size=1&gt;iis&lt;/A&gt;&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR bgColor=#f4f4f4&gt;
&lt;TD&gt;&lt;FONT face=verdana,sans-serif size=1&gt;&amp;nbsp;1076&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;A href="http://inventory.overture.com/d/searchinventory/suggestion/?term=download%20iis&amp;amp;mkt=us&amp;amp;lang=en_US"&gt;&lt;FONT face=verdana,sans-serif color=#000000 size=1&gt;download iis&lt;/A&gt;&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;FONT face=verdana,sans-serif size=1&gt;&amp;nbsp;593&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;A href="http://inventory.overture.com/d/searchinventory/suggestion/?term=o2%20xda%20iis&amp;amp;mkt=us&amp;amp;lang=en_US"&gt;&lt;FONT face=verdana,sans-serif color=#000000 size=1&gt;o2 xda iis&lt;/A&gt;&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR bgColor=#f4f4f4&gt;
&lt;TD&gt;&lt;FONT face=verdana,sans-serif size=1&gt;&amp;nbsp;572&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;A href="http://inventory.overture.com/d/searchinventory/suggestion/?term=xda%20iis&amp;amp;mkt=us&amp;amp;lang=en_US"&gt;&lt;FONT face=verdana,sans-serif color=#000000 size=1&gt;xda iis&lt;/A&gt;&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;FONT face=verdana,sans-serif size=1&gt;&amp;nbsp;553&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;A href="http://inventory.overture.com/d/searchinventory/suggestion/?term=read%20iis%20server%20log&amp;amp;mkt=us&amp;amp;lang=en_US"&gt;&lt;FONT face=verdana,sans-serif color=#000000 size=1&gt;read iis server log&lt;/A&gt;&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR bgColor=#f4f4f4&gt;
&lt;TD&gt;&lt;FONT face=verdana,sans-serif size=1&gt;&amp;nbsp;460&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;A href="http://inventory.overture.com/d/searchinventory/suggestion/?term=microsoft%20iis&amp;amp;mkt=us&amp;amp;lang=en_US"&gt;&lt;FONT face=verdana,sans-serif color=#000000 size=1&gt;microsoft iis&lt;/A&gt;&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;FONT face=verdana,sans-serif size=1&gt;&amp;nbsp;403&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;A href="http://inventory.overture.com/d/searchinventory/suggestion/?term=iis%20intranet&amp;amp;mkt=us&amp;amp;lang=en_US"&gt;&lt;FONT face=verdana,sans-serif color=#000000 size=1&gt;iis intranet&lt;/A&gt;&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR bgColor=#f4f4f4&gt;
&lt;TD&gt;&lt;FONT face=verdana,sans-serif size=1&gt;&amp;nbsp;371&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;A href="http://inventory.overture.com/d/searchinventory/suggestion/?term=iis%20server&amp;amp;mkt=us&amp;amp;lang=en_US"&gt;&lt;FONT face=verdana,sans-serif color=#000000 size=1&gt;iis server&lt;/A&gt;&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;FONT face=verdana,sans-serif size=1&gt;&amp;nbsp;369&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;A href="http://inventory.overture.com/d/searchinventory/suggestion/?term=ti%2030x%20iis&amp;amp;mkt=us&amp;amp;lang=en_US"&gt;&lt;FONT face=verdana,sans-serif color=#000000 size=1&gt;ti 30x iis&lt;/A&gt;&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR bgColor=#f4f4f4&gt;
&lt;TD&gt;&lt;FONT face=verdana,sans-serif size=1&gt;&amp;nbsp;344&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;A href="http://inventory.overture.com/d/searchinventory/suggestion/?term=php%20iis&amp;amp;mkt=us&amp;amp;lang=en_US"&gt;&lt;FONT face=verdana,sans-serif color=#000000 size=1&gt;php iis&lt;/A&gt;&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;FONT face=verdana,sans-serif size=1&gt;&amp;nbsp;336&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;A href="http://inventory.overture.com/d/searchinventory/suggestion/?term=iis%20window%20xp&amp;amp;mkt=us&amp;amp;lang=en_US"&gt;&lt;FONT face=verdana,sans-serif color=#000000 size=1&gt;iis window xp&lt;/A&gt;&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR bgColor=#f4f4f4&gt;
&lt;TD&gt;&lt;FONT face=verdana,sans-serif size=1&gt;&amp;nbsp;333&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;A href="http://inventory.overture.com/d/searchinventory/suggestion/?term=identix%2Ecom%20iis&amp;amp;mkt=us&amp;amp;lang=en_US"&gt;&lt;FONT face=verdana,sans-serif color=#000000 size=1&gt;identix.com iis&lt;/A&gt;&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;FONT face=verdana,sans-serif size=1&gt;&amp;nbsp;331&lt;/FONT&gt;&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;A href="http://inventory.overture.com/d/searchinventory/suggestion/?term=iis%20web%20server&amp;amp;mkt=us&amp;amp;lang=en_US"&gt;&lt;FONT face=verdana,sans-serif color=#000000 size=1&gt;iis web server&lt;/A&gt;&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/P&gt;&lt;img src="http://blog.crowe.co.nz/blog/aggbug/277.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Chris Crowe [IIS MVP]</dc:creator>
            <guid>http://blog.crowe.co.nz/blog/archive/2005/09/22/277.aspx</guid>
            <pubDate>Thu, 22 Sep 2005 07:12:00 GMT</pubDate>
            <wfw:comment>http://blog.crowe.co.nz/blog/comments/277.aspx</wfw:comment>
            <comments>http://blog.crowe.co.nz/blog/archive/2005/09/22/277.aspx#feedback</comments>
            <wfw:commentRss>http://blog.crowe.co.nz/blog/comments/commentRss/277.aspx</wfw:commentRss>
        </item>
        <item>
            <title>ASP.Net Server Control - Dynamic Lookup Edit Control with Popup Window</title>
            <link>http://blog.crowe.co.nz/blog/archive/2005/08/27/236.aspx</link>
            <description>&lt;P&gt;Welcome to&amp;nbsp;my ASP.NET Server Control : &lt;STRONG&gt;LookupEditControl&lt;/STRONG&gt;. This control uses a number of different technologies to do its magic.&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Dynamic requests, DHTML, and JavaScript &lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;There is a lot of talk these days about AJAX but not a lot of source in the edit control stage from what I have found. There is always the Google Suggest discussions but no real code. &lt;/P&gt;
&lt;P&gt;I have written an ASP.Net server control (currently still in development) that does what&amp;nbsp;I need and works quite well, but not 100% well, still more work to do.&lt;/P&gt;
&lt;P&gt;Here are some of the features that I have implemented and currently &lt;I&gt;&lt;B&gt;basically work&lt;/B&gt;&lt;/I&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;ASP.Net Server Control 
&lt;LI&gt;Multi Browser Compatible (IE 6, and Firefox 1.04, maybe others?) 
&lt;LI&gt;Supports Multiple Columns in the popup window 
&lt;LI&gt;Supports saving a value that is visible in the Columns just like a DropDownList 
&lt;LI&gt;Supports updating values when you have tabbed off the control, this was for those times when you type too quick and the control is still doing its lookup. 
&lt;LI&gt;Supports defining the width of the Popup Window 
&lt;LI&gt;Supports CSS styles for the columns and the Popup Window 
&lt;LI&gt;Supports Keyboard Up/Down 
&lt;LI&gt;Supports Mouse Selection 
&lt;LI&gt;Popup Window Displays over Select Tags with no bleeding&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;I really am looking for people to help me with this project as I need testers and people with ideas who may be better than me to help clean up the code.&lt;/P&gt;
&lt;P&gt;&lt;IMG src="/images/LookupEditControl.gif"&gt;&lt;/P&gt;
&lt;P&gt;If you want to see it in action browse to &lt;A href="http://code.crowe.co.nz/LookupEditControl/"&gt;http://code.crowe.co.nz/LookupEditControl/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Please let me know what you think of this control as I have spent a lot of time and I am quite happy with it but there are issues yet to be fixed.&lt;/P&gt;&lt;img src="http://blog.crowe.co.nz/blog/aggbug/236.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Chris Crowe [IIS MVP]</dc:creator>
            <guid>http://blog.crowe.co.nz/blog/archive/2005/08/27/236.aspx</guid>
            <pubDate>Sat, 27 Aug 2005 06:48:00 GMT</pubDate>
            <wfw:comment>http://blog.crowe.co.nz/blog/comments/236.aspx</wfw:comment>
            <comments>http://blog.crowe.co.nz/blog/archive/2005/08/27/236.aspx#feedback</comments>
            <slash:comments>14</slash:comments>
            <wfw:commentRss>http://blog.crowe.co.nz/blog/comments/commentRss/236.aspx</wfw:commentRss>
        </item>
        <item>
            <title>HTML - How to popup a DIV tag over a SELECT tag</title>
            <link>http://blog.crowe.co.nz/blog/archive/2005/08/18/220.aspx</link>
            <description>&lt;P&gt;The following code will allow you to popup a DIV tag so that even if the DIV tag is displayed over&amp;nbsp;a SELECT tag the DIV will not show any of the select tag. The way it does this is by placing an IFRAME over the top of the DIV tag.&lt;/P&gt;
&lt;P&gt;Examples in both IE and Mozzila below.&lt;/P&gt;
&lt;TABLE border=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;IMG src="/Attachments/popupDivOverSelectIE.gif"&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD align=middle&gt;&lt;B&gt;IE 6&lt;/B&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;IMG src="/Attachments/popupDivOverSelectFirefox.gif"&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD align=middle&gt;&lt;B&gt;Mozilla Firefox 1.04&lt;/B&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;
&lt;P&gt;
&lt;P&gt;
&lt;P&gt;The code also uses a free 3rd party Javascript library called &lt;STRONG&gt;Anchor Position&lt;/STRONG&gt;&amp;nbsp;by Matt Kruse - &lt;A href="http://www.mattkruse.com/"&gt;http://www.mattkruse.com/&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This library allows you to get the location of an element on the page. It will return the XY coordinates of the element. It is used to handle the placement of the DIV tag in the example below.&lt;/P&gt;
&lt;P&gt;I also use a &lt;STRONG&gt;blank.htm&lt;/STRONG&gt; file for the src parameter of the IFRAME - you may be able to get rid of this by using a javascript function instead.&lt;/P&gt;
&lt;P&gt;The following code works in both IE 6 and also Mozilla Firefox 1.04 - I have not tested on other browsers at this time.&lt;/P&gt;
&lt;P&gt;For a live demo see &lt;A href="http://blog.crowe.co.nz/attachments/DivTagDemo.htm"&gt;http://blog.crowe.co.nz/attachments/DivTagDemo.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;PRE&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: maroon"&gt;html&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: maroon"&gt;head&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: maroon"&gt;meta&lt;/SPAN&gt; &lt;SPAN style="COLOR: red"&gt;http-equiv&lt;/SPAN&gt;="&lt;SPAN style="COLOR: blue"&gt;Content-Type&lt;/SPAN&gt;" &lt;SPAN style="COLOR: red"&gt;content&lt;/SPAN&gt;="&lt;SPAN style="COLOR: blue"&gt;text/html; charset=windows-1252&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: maroon"&gt;title&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;How to popup a DIV over a SELECT Tag&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;/&lt;SPAN style="COLOR: maroon"&gt;title&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;/&lt;SPAN style="COLOR: maroon"&gt;head&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: maroon"&gt;body&lt;/SPAN&gt; &lt;SPAN style="COLOR: red"&gt;bgcolor&lt;/SPAN&gt;=#FFFFCC&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;BR&gt;&lt;/SPAN&gt;
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: maroon"&gt;script&lt;/SPAN&gt; &lt;SPAN style="COLOR: red"&gt;language&lt;/SPAN&gt;="&lt;SPAN style="COLOR: blue"&gt;javascript&lt;/SPAN&gt;" &lt;SPAN style="COLOR: red"&gt;src&lt;/SPAN&gt;="&lt;SPAN style="COLOR: blue"&gt;AnchorPosition.js&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;/&lt;SPAN style="COLOR: maroon"&gt;script&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;!-- 
&lt;FONT color=#006400&gt;This is our DIV Tag that will popup over the current content, when we popup our div tag, we place &lt;BR&gt;an IFRAME over the top of the div tag. This is so we can hide the Select tag.
We then place a table after the IFRAME and force it to be positioned starting at the top left &lt;BR&gt;of our div tag.&lt;/FONT&gt;
--&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;
When you click the link below the popup will show over the top of the div
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: maroon"&gt;div&lt;/SPAN&gt; &lt;SPAN style="COLOR: red"&gt;id&lt;/SPAN&gt;="&lt;SPAN style="COLOR: blue"&gt;floatingdiv&lt;/SPAN&gt;" &lt;SPAN style="COLOR: red"&gt;style="position:absolute;display:none;left=30;top=20;width=300;height&lt;/SPAN&gt;=150"&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: maroon"&gt;iframe&lt;/SPAN&gt; &lt;SPAN style="COLOR: red"&gt;id&lt;/SPAN&gt;="&lt;SPAN style="COLOR: blue"&gt;selectblocker&lt;/SPAN&gt;" &lt;SPAN style="COLOR: red"&gt;style&lt;/SPAN&gt;="&lt;SPAN style="COLOR: blue"&gt;position:relative;&lt;/SPAN&gt;" 
 &lt;SPAN style="COLOR: red"&gt;frameBorder&lt;/SPAN&gt;="&lt;SPAN style="COLOR: blue"&gt;0&lt;/SPAN&gt;" &lt;SPAN style="COLOR: red"&gt;scrolling&lt;/SPAN&gt;="&lt;SPAN style="COLOR: blue"&gt;no&lt;/SPAN&gt;" &lt;SPAN style="COLOR: red"&gt;src&lt;/SPAN&gt;="&lt;SPAN style="COLOR: blue"&gt;blank.htm&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;/&lt;SPAN style="COLOR: maroon"&gt;iframe&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: maroon"&gt;table&lt;/SPAN&gt; &lt;SPAN style="COLOR: red"&gt;border&lt;/SPAN&gt;=1 &lt;SPAN style="COLOR: red"&gt;cellspacing&lt;/SPAN&gt;=5 &lt;SPAN style="COLOR: red"&gt;id&lt;/SPAN&gt;="&lt;SPAN style="COLOR: blue"&gt;contents&lt;/SPAN&gt;" &lt;SPAN style="COLOR: red"&gt;style&lt;/SPAN&gt;="&lt;SPAN style="COLOR: blue"&gt;position:absolute; background-color: #CCFF99&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: maroon"&gt;tr&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: maroon"&gt;td&lt;/SPAN&gt; &lt;SPAN style="COLOR: red"&gt;valign&lt;/SPAN&gt;='top'&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;This is the actual contents that we want to display within the DIV tag area.&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;/&lt;SPAN style="COLOR: maroon"&gt;td&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;/&lt;SPAN style="COLOR: maroon"&gt;tr&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;/&lt;SPAN style="COLOR: maroon"&gt;table&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;/&lt;SPAN style="COLOR: maroon"&gt;div&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: maroon"&gt;form&lt;/SPAN&gt; &lt;SPAN style="COLOR: red"&gt;method&lt;/SPAN&gt;="&lt;SPAN style="COLOR: blue"&gt;POST&lt;/SPAN&gt;" &lt;SPAN style="COLOR: red"&gt;action&lt;/SPAN&gt;="&lt;SPAN style="COLOR: blue"&gt;&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: maroon"&gt;table&lt;/SPAN&gt; &lt;SPAN style="COLOR: red"&gt;border&lt;/SPAN&gt;=1 &lt;SPAN style="COLOR: red"&gt;cellspacing&lt;/SPAN&gt;=2 &lt;SPAN style="COLOR: red"&gt;cellpadding&lt;/SPAN&gt;=2&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: maroon"&gt;tr&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: maroon"&gt;td&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;Enter your name&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;/&lt;SPAN style="COLOR: maroon"&gt;td&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: maroon"&gt;td&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: maroon"&gt;input&lt;/SPAN&gt; &lt;SPAN style="COLOR: red"&gt;type&lt;/SPAN&gt;="&lt;SPAN style="COLOR: blue"&gt;text&lt;/SPAN&gt;" &lt;SPAN style="COLOR: red"&gt;name&lt;/SPAN&gt;="&lt;SPAN style="COLOR: blue"&gt;name&lt;/SPAN&gt;" &lt;SPAN style="COLOR: red"&gt;id&lt;/SPAN&gt;="&lt;SPAN style="COLOR: blue"&gt;name&lt;/SPAN&gt;" &lt;SPAN style="COLOR: red"&gt;size&lt;/SPAN&gt;=10 &lt;SPAN style="COLOR: red"&gt;style&lt;/SPAN&gt;="&lt;SPAN style="COLOR: blue"&gt;width:200px&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;BR&gt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;/&lt;SPAN style="COLOR: maroon"&gt;td&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;/&lt;SPAN style="COLOR: maroon"&gt;tr&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: maroon"&gt;tr&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: maroon"&gt;td&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;Please select your occupation&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;/&lt;SPAN style="COLOR: maroon"&gt;td&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: maroon"&gt;td&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: maroon"&gt;select&lt;/SPAN&gt; &lt;SPAN style="COLOR: red"&gt;size&lt;/SPAN&gt;="&lt;SPAN style="COLOR: blue"&gt;1&lt;/SPAN&gt;" &lt;SPAN style="COLOR: red"&gt;name&lt;/SPAN&gt;="&lt;SPAN style="COLOR: blue"&gt;D1&lt;/SPAN&gt;" &lt;SPAN style="COLOR: red"&gt;id&lt;/SPAN&gt;="&lt;SPAN style="COLOR: blue"&gt;D1&lt;/SPAN&gt;" &lt;SPAN style="COLOR: red"&gt;style&lt;/SPAN&gt;="&lt;SPAN style="COLOR: blue"&gt;width:200px&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;
 &lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: maroon"&gt;option&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;Programmer&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;/&lt;SPAN style="COLOR: maroon"&gt;option&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;
 &lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;/&lt;SPAN style="COLOR: maroon"&gt;select&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;
 &lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;/&lt;SPAN style="COLOR: maroon"&gt;td&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;/&lt;SPAN style="COLOR: maroon"&gt;tr&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;/&lt;SPAN style="COLOR: maroon"&gt;table&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt; 
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;/&lt;SPAN style="COLOR: maroon"&gt;form&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;!-- move our hide and show links away from the div tag --&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;a &lt;SPAN style="COLOR: red"&gt;href&lt;/SPAN&gt;="&lt;SPAN style="COLOR: blue"&gt;Javascript:Show();&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;Show&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;/&lt;SPAN style="COLOR: maroon"&gt;a&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;a &lt;SPAN style="COLOR: red"&gt;href&lt;/SPAN&gt;="&lt;SPAN style="COLOR: blue"&gt;Javascript:Hide();&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;Hide&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;/&lt;SPAN style="COLOR: maroon"&gt;a&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;BR&gt;&lt;/SPAN&gt;
&lt;SPAN style="COLOR: blue"&gt;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="COLOR: maroon"&gt;script&lt;/SPAN&gt; &lt;SPAN style="COLOR: red"&gt;language&lt;/SPAN&gt;="&lt;SPAN style="COLOR: blue"&gt;javascript&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;
function Show(){
var divTag = document.getElementById("&lt;SPAN style="COLOR: blue"&gt;floatingdiv&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;);
var iFrameTag = document.getElementById(&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;selectblocker&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;);
var tableTag = document.getElementById(&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;contents&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;);
var AnchorPos = getAnchorPosition(&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;name&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;)
divTag.style.left=AnchorPos.x+20;
divTag.style.top=AnchorPos.y+22;
divTag.style.width=300;
divTag.style.height=150;
iFrameTag.style.left = 0;
iFrameTag.style.top = 0;
iFrameTag.style.width = divTag.style.width;
iFrameTag.style.height = divTag.style.height;
iFrameTag.style.zIndex = divTag.style.zIndex-1;

tableTag.style.left = 0;
tableTag.style.top = 0;
tableTag.style.width = divTag.style.width;
tableTag.style.height = divTag.style.height;
tableTag.style.zIndex = divTag.style.zIndex;
divTag.style.display = &lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;block&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;;
}
function Hide(){
var divTag = document.getElementById(&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;floatingdiv&lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;);
divTag.style.display = &lt;/SPAN&gt;"&lt;SPAN style="COLOR: blue"&gt;none&lt;/SPAN&gt;";
}
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;/&lt;SPAN style="COLOR: maroon"&gt;script&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="COLOR: blue"&gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;/&lt;SPAN style="COLOR: maroon"&gt;body&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN style="COLOR: blue"&gt;&amp;lt;&lt;/SPAN&gt;/&lt;SPAN style="COLOR: maroon"&gt;html&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;img src="http://blog.crowe.co.nz/blog/aggbug/220.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Chris Crowe [IIS MVP]</dc:creator>
            <guid>http://blog.crowe.co.nz/blog/archive/2005/08/18/220.aspx</guid>
            <pubDate>Fri, 19 Aug 2005 01:46:00 GMT</pubDate>
            <wfw:comment>http://blog.crowe.co.nz/blog/comments/220.aspx</wfw:comment>
            <comments>http://blog.crowe.co.nz/blog/archive/2005/08/18/220.aspx#feedback</comments>
            <slash:comments>8</slash:comments>
            <wfw:commentRss>http://blog.crowe.co.nz/blog/comments/commentRss/220.aspx</wfw:commentRss>
        </item>
    </channel>
</rss>