<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>SQLHTML</title>
	<atom:link href="http://sqlhtml.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sqlhtml.wordpress.com</link>
	<description></description>
	<lastBuildDate>Thu, 09 Apr 2009 03:13:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='sqlhtml.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>SQLHTML</title>
		<link>http://sqlhtml.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://sqlhtml.wordpress.com/osd.xml" title="SQLHTML" />
	<atom:link rel='hub' href='http://sqlhtml.wordpress.com/?pushpress=hub'/>
		<item>
		<title>JavaScript and XHTML&#8230;</title>
		<link>http://sqlhtml.wordpress.com/2009/04/09/javascript-and-xhtml/</link>
		<comments>http://sqlhtml.wordpress.com/2009/04/09/javascript-and-xhtml/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 02:58:55 +0000</pubDate>
		<dc:creator>lcmk132</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sqlhtml.wordpress.com/?p=96</guid>
		<description><![CDATA[Uses of JavaScript in XHTML JavaScript is a lightweight programming language that was developed to enable more interactivity on static web pages. JavaScript can be used in an HTML document between the &#60;script&#62; tags however, when you validate the HTML &#8230; <a href="http://sqlhtml.wordpress.com/2009/04/09/javascript-and-xhtml/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlhtml.wordpress.com&amp;blog=6362715&amp;post=96&amp;subd=sqlhtml&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><!--[if gte mso 9]&gt;  Normal 0   false false false        MicrosoftInternetExplorer4  &lt;![endif]--><!--[if gte mso 9]&gt;   &lt;![endif]--></p>
<p class="MsoNormal"><span lang="EN-AU"> <!--[if !supportLineBreakNewLine]--><br />
<!--[endif]--></span></p>
<p class="MsoNormal"><span lang="EN-AU"> </span></p>
<p class="MsoNormal" style="text-align:center;"><strong><span lang="EN-AU">Uses of JavaScript in XHTML</span></strong></p>
<p class="MsoNormal"><strong><span lang="EN-AU"> </span></strong></p>
<p class="MsoNormal"><span lang="EN-AU">JavaScript is a lightweight programming language that was developed to enable more interactivity on static web pages. </span></p>
<p class="MsoNormal"><span lang="EN-AU"> </span></p>
<p class="MsoNormal"><span lang="EN-AU">JavaScript can be used in an HTML document between the &lt;script&gt; tags however, when you validate the HTML on your webpage the javaScript content will be considered as character data. It is better to follow XHTML standards so that the javaScript is considered parsed character data which is then processed by the validator. </span></p>
<p class="MsoNormal"><span lang="EN-AU"> </span></p>
<p class="MsoNormal" style="text-align:center;"><strong><span lang="EN-AU">Referencing JavaScript</span></strong></p>
<p class="MsoNormal"><strong><span lang="EN-AU"> </span></strong></p>
<p class="MsoNormal"><span lang="EN-AU">JavaScript can be embedded within a document or it can be external. When the JavaScript is embedded all script has to be in the &lt;head&gt;.</span></p>
<p class="MsoNormal"><span lang="EN-AU"> </span></p>
<pre><span class="insert"><em><span style="font-family:Verdana;">&lt;script type="text/javascript"&gt;</span></em></span>
<span class="insert"><em><span style="font-family:Verdana;">&lt;/script&gt;</span></em></span>
<span class="insert"><em><span style="font-family:Verdana;"> </span></em></span>
<span class="insert"><span style="font-family:Verdana;"> </span></span></pre>
<p class="MsoNormal"><span lang="EN-AU">When a script is an external file-</span></p>
<p class="MsoNormal"><strong><span lang="EN-AU"> </span></strong></p>
<p class="MsoNormal"><em><span style="font-size:12pt;">&lt;script type=”text/javascript” src=”ExternalJavaS.js”&gt;&lt;/script&gt;</span></em></p>
<p class="MsoNormal"><span lang="EN-AU"> </span></p>
<p class="MsoNormal"><span lang="EN-AU"> </span></p>
<p class="MsoNormal" style="text-align:center;"><strong><span lang="EN-AU">If… Statements-</span></strong></p>
<p class="MsoNormal"><span lang="EN-AU"> </span></p>
<p class="MsoNormal"><span lang="EN-AU">There are 3 types of If Statements, which are all code that is to be executed upon a conditional statement.</span></p>
<p class="MsoNormal"><span lang="EN-AU"> </span></p>
<ol style="margin-top:0;" type="1">
<li class="MsoNormal"><span style="text-decoration:underline;"><span lang="EN-AU">If…</span></span></li>
</ol>
<p class="MsoNormal"><span lang="EN-AU">Only if the specified condition is true</span></p>
<p class="MsoNormal"><span lang="EN-AU"> </span></p>
<ol style="margin-top:0;" type="1">
<li class="MsoNormal"><span style="text-decoration:underline;"><span lang="EN-AU">If…Else</span></span></li>
</ol>
<p class="MsoNormal"><span lang="EN-AU">Use this statement if you want to execute some code if the condition is true and another code if the condition is false</span></p>
<p class="MsoNormal"><span lang="EN-AU"> </span></p>
<ol style="margin-top:0;" type="1">
<li class="MsoNormal"><span style="text-decoration:underline;"><span lang="EN-AU">If…Else…If</span></span></li>
</ol>
<p class="MsoNormal"><span lang="EN-AU">Use this statement if you want to select one of many blocks of code to be executed</span></p>
<p class="MsoNormal"><strong><span style="font-size:12pt;"> </span></strong></p>
<p class="MsoNormal" style="text-align:center;"><strong><span style="font-size:12pt;">Loops-</span></strong></p>
<p class="MsoNormal" style="text-align:center;"><strong><span style="font-size:12pt;"><br />
</span></strong></p>
<p class="MsoNormal"><span lang="EN-AU">Loops in JavaScript are used to execute the same block of code a specified number of times or while a specified condition is true. For example, you can write code that will produce output that sums mathematical equations. If the start of the loop was 1 and you wanted to write answers for startLoop + 12,358 it would give u the answers. </span></p>
<p class="MsoNormal"><span lang="EN-AU"><br />
</span></p>
<p class="MsoNormal"><span lang="EN-AU">There are 2 types of loops-</span></p>
<ol type="1">
<li class="MsoNormal"><span style="text-decoration:underline;"><span lang="EN-AU">For</span></span></li>
</ol>
<p class="MsoNormal"><span lang="EN-AU">Runs a loop through a block of code as many times as it has been specified </span></p>
<ol type="1">
<li class="MsoNormal"><span lang="EN-AU"><span style="text-decoration:underline;">While</span> </span><strong></strong></li>
</ol>
<p class="MsoNormal"><span lang="EN-AU">Runs code while a condition is true. This type of loop can lead to infinite loops until the statement is false. </span><strong></strong></p>
<p class="MsoNormal"><strong><span style="font-size:12pt;"> </span></strong></p>
<p class="MsoNormal"><span style="font-size:12pt;">Loops can be broken in 2 different ways:</span></p>
<p class="MsoNormal"><span style="font-size:12pt;"><br />
</span></p>
<p class="MsoNormal"><span style="text-decoration:underline;"><span style="font-size:12pt;">Break:</span></span><strong><span style="font-size:12pt;"> </span></strong><span style="font-size:12pt;">T</span><span lang="EN-AU">he Break statement stops the current while or for loop and continues executing the code that follows after the loop (if any).</span></p>
<p class="MsoNormal"><span style="text-decoration:underline;"><span lang="EN-AU">Continue:</span></span><strong><span lang="EN-AU"> </span></strong><span lang="EN-AU">A Continue statement terminates execution of the block of statements in a while or for loop and continues execution of the loop with the next iteration. </span><strong></strong></p>
<p class="MsoNormal"><strong><span style="font-size:12pt;"> </span></strong></p>
<p class="MsoNormal" style="text-align:center;"><strong><span style="font-size:12pt;">Functions-</span></strong></p>
<p><span style="font-family:Verdana;">Functions are a way of organising and controlling different sequences of code which work together with other functions, page elements and input from the user. A function typically contains a set of commands for a specific purpose which you want to run at a certain time.</span></p>
<p><span style="font-family:Verdana;">Each function in a script is given a unique name. The example below is named &#8220;doSomething&#8221;, although it could be given any name you like.</span></p>
<pre><em><span style="font-family:Verdana;">function doSomething() {</span></em>
<em><span style="font-family:Verdana;"> // The function code goes here</span></em>
<span style="font-family:Verdana;">}

<em></em></span></pre>
<p class="MsoNormal" style="text-align:left;"><strong><span style="font-size:12pt;">Parameters-<br />
</span></strong><span style="font-size:12pt;">Parameters may or may not be used with a function. A function may be called without parameters: function(); or have parameters: function(parameter).<br />
This allows code to be minimised if paramters are used correctly. </span></p>
<p class="MsoNormal"><span style="font-size:12pt;"><br />
<span>&lt;script language=”JavaScript”&gt;<br />
function box1(){alert(”You just opened box #1″);}<br />
function box2(){alert(”This is box #2″);}<br />
&lt;/script&gt;<br />
&lt;a href=”#” onClick=”box1()”&gt;Box #1&lt;/a&gt;&lt;br&gt;<br />
&lt;a href=”#” onClick=”box2()”&gt;Box #2&lt;/a&gt;</span></span></p>
<p class="MsoNormal"><span style="font-size:12pt;">could be minimised to:</span></p>
<p class="MsoNormal"><span style="font-size:12pt;">&lt;script language=”JavaScript”&gt;<br />
function box(whichText)<br />
{alert(whichText);}<br />
&lt;/script&gt;<br />
&lt;a href=”#” onClick=”box(‘You just opened box #1′)”&gt;</span></p>
<p class="MsoNormal"><span style="font-size:12pt;"><br />
</span></p>
<p class="MsoNormal" style="text-align:center;"><strong><span style="font-size:12pt;">Return Values-</span></strong></p>
<p class="MsoNormal" style="text-align:left;"><strong><span style="font-size:12pt;"><br />
</span></strong><span style="font-size:12pt;">The return statement is used to specify the value that is returned from the function. It is referenced by:</span></p>
<p class="MsoNormal" style="text-align:left;"><span style="font-size:12pt;">return variable;</span></p>
<p class="MsoNormal" style="text-align:left;"><span lang="EN-AU"> </span></p>
<br />Posted in Uncategorized  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlhtml.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlhtml.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlhtml.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlhtml.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlhtml.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlhtml.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlhtml.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlhtml.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlhtml.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlhtml.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlhtml.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlhtml.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlhtml.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlhtml.wordpress.com/96/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlhtml.wordpress.com&amp;blog=6362715&amp;post=96&amp;subd=sqlhtml&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sqlhtml.wordpress.com/2009/04/09/javascript-and-xhtml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9a7ccd3917744193d0d60275a0e9083?s=96&#38;d=identicon" medium="image">
			<media:title type="html">lcmk132</media:title>
		</media:content>
	</item>
		<item>
		<title>All about CSS&#8230;</title>
		<link>http://sqlhtml.wordpress.com/2009/04/08/all-about-css/</link>
		<comments>http://sqlhtml.wordpress.com/2009/04/08/all-about-css/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 08:11:47 +0000</pubDate>
		<dc:creator>lcmk132</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sqlhtml.wordpress.com/?p=92</guid>
		<description><![CDATA[Importance of CSS CSS is responsible for the overall presentation of a web document. CSS set the properties for all elements contained within HTML. CSS enables every element to have a style attached to it. Without CSS, HTML documents would &#8230; <a href="http://sqlhtml.wordpress.com/2009/04/08/all-about-css/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlhtml.wordpress.com&amp;blog=6362715&amp;post=92&amp;subd=sqlhtml&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><strong>Importance of CSS</strong></p>
<p>CSS is responsible for the overall presentation of a web document. CSS set the properties for all elements contained within HTML. CSS enables every element to have a style attached to it. Without CSS, HTML documents would be extremely plain and not aesthetically pleasing.</p>
<p style="text-align:center;"><strong>Implementation of CSS</strong></p>
<p><strong><span style="font-weight:normal;">When implementing CSS to a HTML document there are three options available:</span></strong></p>
<p style="margin-left:.5in;text-indent:-.25in;"><!--[if !supportLists]--><strong><span style="font-weight:normal;"><span>1.<span style="font-family:&quot;font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;"> </span></span></span></strong><!--[endif]--><strong><span style="font-weight:normal;">Internal</span></strong></p>
<p style="margin-left:.5in;text-indent:-.25in;"><!--[if !supportLists]--><strong><span style="font-weight:normal;"><span>2.<span style="font-family:&quot;font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;"> </span></span></span></strong><!--[endif]--><strong><span style="font-weight:normal;">Inline</span></strong></p>
<p style="margin-left:.5in;text-indent:-.25in;"><!--[if !supportLists]--><strong><span style="font-weight:normal;"><span>3.<span style="font-family:&quot;font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;"> </span></span></span></strong><!--[endif]--><strong><span style="font-weight:normal;">External</span></strong></p>
<p><strong><span style="font-weight:normal;"><span style="text-decoration:underline;">Internal style</span> sheets are implemented in the &lt;head&gt; using the &lt;style&gt; tag. Internal style sheets are used for only the HTML which the CSS is written on and this means that multiple pages to not need to be linked. A disadvantage of using internal style sheets is that it takes longer for the page to load. </span></strong></p>
<p><strong><span style="font-weight:normal;">Coding for <span style="text-decoration:underline;">Internal</span>:</span></strong></p>
<p>&lt;style type=&#8221;text/css&#8221; media=&#8221;all&#8221;&gt;<br />
&lt;!&#8211;<br />
p { font: 1em Times serif; color: #c00; }<br />
h1 { font: 2em Times serif; color: #f00; }<br />
&#8211;&gt;<br />
&lt;/style&gt;</p>
<p><span style="text-decoration:underline;">Inline</span> style sheets are implemented in the crux of the HTML document. The style is defined within each element. This can lead to a build up of styling and a lot of time is wasted from writing the same styles.</p>
<p>Coding for <span style="text-decoration:underline;">Inline</span>:</p>
<pre>&lt;p style="color: sienna; margin-left: 20px"&gt;
This is a paragraph
&lt;/p&gt;</pre>
<p>Using an <span style="text-decoration:underline;">external </span>style sheet means that there is a separate document which has saved the CSS code. There is no CSS code embedded in the HTML document, making it more streamlined and faster. The coding is similar to an internal style sheet however, instead of it being embedded in the HTML document between &lt;style&gt; &lt;/style&gt; it is in a separate document.</p>
<p style="text-align:center;"><strong>Using your own CSS- IE</strong></p>
<p>With IE it is very easy to view web pages using a different style sheet to the one already implemented. To override the style sheet already in place, the user should:</p>
<p><em><span style="font-style:normal;">1. Tools &gt; Internet Options</span></em><em><br />
</em><em><span style="font-style:normal;">2. Appearance &gt; Accessibility</span></em><em><br />
</em><em><span style="font-style:normal;">3. Check Box: Format documents using my style sheet.</span></em><em><br />
</em><em><span style="font-style:normal;">4. Locate own style sheet&gt; OK.</span></em></p>
<p><em><span style="font-style:normal;"><br />
</span></em></p>
<p style="text-align:center;"><strong>Using your own CSS- FF</strong></p>
<p>Using your own CSS on FF is a little more difficult than with IE however, it is possible.</p>
<p style="margin:0 0 .0001pt;">1. My Computer &gt; Local Disk (C:)&gt; Program Files &gt; Mozilla Firefox</p>
<p style="margin:0 0 .0001pt;">2. Defaults &gt; Profile &gt; Chrome</p>
<p style="margin:0 0 .0001pt;">3. <span> </span>Rename “userContent-example.css” to “userContent.css”</p>
<p style="margin:0 0 .0001pt;">4. Edit this using Notepad</p>
<p style="margin:0 0 .0001pt;">5. Save userContent.css</p>
<p style="margin:0 0 .0001pt;">6. Restart Firefox</p>
<br />Posted in Uncategorized  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlhtml.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlhtml.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlhtml.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlhtml.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlhtml.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlhtml.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlhtml.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlhtml.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlhtml.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlhtml.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlhtml.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlhtml.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlhtml.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlhtml.wordpress.com/92/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlhtml.wordpress.com&amp;blog=6362715&amp;post=92&amp;subd=sqlhtml&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sqlhtml.wordpress.com/2009/04/08/all-about-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9a7ccd3917744193d0d60275a0e9083?s=96&#38;d=identicon" medium="image">
			<media:title type="html">lcmk132</media:title>
		</media:content>
	</item>
		<item>
		<title>Skype, Dizzler and File2HD Web Apps&#8230;</title>
		<link>http://sqlhtml.wordpress.com/2009/04/07/skype-dizzler-and-file2hd-web-apps/</link>
		<comments>http://sqlhtml.wordpress.com/2009/04/07/skype-dizzler-and-file2hd-web-apps/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 02:45:27 +0000</pubDate>
		<dc:creator>lcmk132</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sqlhtml.wordpress.com/?p=81</guid>
		<description><![CDATA[SKYPE http://www.skype.com/intl/en/ Skype is a free web application that provides users with telephone capabilities over an internet connection aka VOIP. • Search Search enables users to find friends and family by entering their full name, email address or Skype name. &#8230; <a href="http://sqlhtml.wordpress.com/2009/04/07/skype-dizzler-and-file2hd-web-apps/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlhtml.wordpress.com&amp;blog=6362715&amp;post=81&amp;subd=sqlhtml&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><span style="color:#000000;"><span style="text-decoration:underline;"><strong>SKYPE</strong></span><br />
http://www.skype.com/intl/en/</span></p>
<p><span style="color:#000000;">Skype is a free web application that provides users with telephone capabilities over an internet connection aka VOIP.</span></p>
<p><span style="color:#000000;">•	<strong>Search</strong><br />
Search enables users to find friends and family by entering their full name, email address or Skype name. You can also narrow this search down by entering a country/region, state, city, language, gender and age range.<br />
•	<strong>Contacts</strong><br />
Contacts are sorted on the main Skype page. They are by who is ‘online’ and in alphabetical order. Offline contacts appear in grey and online contacts in green.<br />
•	<strong>History<br />
</strong> History- gives a log of all activity including calls, chat and file transfers. It gives the date, caller ID, time and file name.<br />
•	<strong>Chat and File Transfer</strong><br />
Chat is very similar to MSN messenger. Both parties can type messages to one another and it is stamped with the username, date and time of message. Messages can be sent whilst the receiving user is offline, the message appears when they next log in.<br />
•	<strong>Conference</strong><br />
Conference chat and calling is provided on Skype. Users can invite a third party to join a chat or calling group.<br />
•	<strong>Status</strong><br />
A status can used to identify what the user is doing. Some of these are ‘away’, ‘do not disturb’, and ‘not available’. An interesting status is the ‘skype me!’ status which means that anyone who finds you in the Skype directory can call you.<br />
•	<strong>Profile Customisation</strong><br />
Your profile picture can be customised. Users can add their country, state, city, language, gender, birth date, home page, about me, email address, phone numbers, number of contacts and myspace page connection.<br />
•	<strong>Skype Credit</strong><br />
Skype credit can be purchased with a fee to enable users to call land line phones or mobiles.<br />
•	<strong>Importing Contacts</strong><br />
Contacts can be imported from such programs as Microsoft Outlook, Outlook Express, MSN hotmail and Yahoo!<br />
•	<strong>Language</strong><br />
There are over 20 languages which Skype can be set in.<br />
•	<strong>Video</strong><br />
Skype doesn’t only allow for voice over the internet but also video if the user has a web cam.</span></p>
<p style="text-align:center;">
<p style="text-align:center;">
<p style="text-align:center;"><span style="color:#000000;"><span style="text-decoration:underline;"><strong>DIZZLER</strong></span><br />
http://www.dizzler.com/</span></p>
<p><span style="color:#000000;">Dizzler is a free media player that plays free streaming music, radio, video, and games. Dizzler offers a way to access free media content on the web as safely and easily as possible without any SPYWARE, ADWARE or storage constraints.</span></p>
<p><span style="color:#000000;">•	<strong>Profile customisation</strong><br />
Users have the option of customizing their profile regarding colors, pictures, how their ‘player’ appears, adding their websites, myspace usernames, youtube user names, music preference, description and location.<br />
•	<strong>Bands can upload music</strong><br />
Upon subscription bands can upload music files up to 100MB.<br />
•	<strong>Put Dizzler on facebook/myspace/Friendster</strong><br />
With Dizzler uses have the opportunity to add code to their facebook/myspace/friendster page so that their Dizzler player appears on their profile with their playlist.<br />
•	<strong>Search (music, video, lyrics)</strong><br />
The search function of Dizzler makes it very easy for the user to find their favoured artists, videos and lyrics.<br />
•	<strong>Compile Playlists</strong><br />
Users can search to find music and add it to their playlist.<br />
•	<strong>Download desktop Application</strong><br />
Users can download a desktop application which makes it<br />
•	<strong>Email Playlist</strong><br />
Users can email playlists to singular or up to 10 email addresses. A unique address is emailed to allow for this.</span></p>
<p style="text-align:center;">
<p style="text-align:center;">
<p style="text-align:center;"><span style="color:#000000;"><span style="text-decoration:underline;"><strong>FILE 2 HD</strong></span><br />
http://file2hd.com/</span></p>
<p><span style="color:#000000;">File2hd is a web application which allows any file from a website to be downloaded to a user’s hard drive. Files include; Audio, Movies, Links, Applications, Objects, Style Sheets and Images.<br />
The user inserts the URL from which they want to download a particular file into the text box, read and accept the terms and conditions then click ‘get files’. Below are all the files that can be downloaded at the user’s discretion.<br />
This application is very simple with very minimal styling. It is most useful for downloading YouTube videos and audio. It is also useful for retrieving music from Myspace music profiles which allows the user to have a song on their hard drive.</span></p>
<br />Posted in Uncategorized  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlhtml.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlhtml.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlhtml.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlhtml.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlhtml.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlhtml.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlhtml.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlhtml.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlhtml.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlhtml.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlhtml.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlhtml.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlhtml.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlhtml.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlhtml.wordpress.com&amp;blog=6362715&amp;post=81&amp;subd=sqlhtml&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sqlhtml.wordpress.com/2009/04/07/skype-dizzler-and-file2hd-web-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9a7ccd3917744193d0d60275a0e9083?s=96&#38;d=identicon" medium="image">
			<media:title type="html">lcmk132</media:title>
		</media:content>
	</item>
		<item>
		<title>Office Live Workspace VS. Google Docs</title>
		<link>http://sqlhtml.wordpress.com/2009/04/07/office-live-workspace-vs-google-docs/</link>
		<comments>http://sqlhtml.wordpress.com/2009/04/07/office-live-workspace-vs-google-docs/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 01:05:45 +0000</pubDate>
		<dc:creator>lcmk132</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sqlhtml.wordpress.com/?p=75</guid>
		<description><![CDATA[Google Docs and Office Live Workspace are essentially free online storage and sharing web applications. They are very similar; however each has its own unique set of features. Below is an outline of the features that each application provides relating &#8230; <a href="http://sqlhtml.wordpress.com/2009/04/07/office-live-workspace-vs-google-docs/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlhtml.wordpress.com&amp;blog=6362715&amp;post=75&amp;subd=sqlhtml&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="color:#000000;"><img class="aligncenter size-full wp-image-74" title="OLW vs. GD" src="http://sqlhtml.files.wordpress.com/2009/04/brill.jpg?w=437&#038;h=198" alt="OLW vs. GD" width="437" height="198" /></span></p>
<p><!--[if gte mso 9]&gt;  Normal 0   false false false        MicrosoftInternetExplorer4  &lt;![endif]--><!--[if gte mso 9]&gt;   &lt;![endif]--></p>
<p class="MsoNormal"><span style="color:#000000;"><span style="font-size:12pt;font-family:&quot;">Google Docs and Office Live Workspace are essentially free online storage and sharing web applications. They are very similar; however each has its own unique set of features. Below is an outline of the features that each application provides relating to file extension support, folder trees, file sizes, upload/download features and online document creation and editing. </span></span></p>
<p class="MsoNormal" style="text-align:center;" align="center"><span style="color:#000000;"><strong><span style="text-decoration:underline;"><span style="font-size:12pt;font-family:&quot;">FILE SUPPORT</span></span></strong></span></p>
<p class="MsoNormal"><span style="color:#000000;"><span style="font-size:12pt;font-family:&quot;">Google Docs supports:</span></span></p>
<ol type="1">
<li class="MsoNormal"><span style="color:#000000;"><span style="font-size:12pt;font-family:&quot;">Documents (up to 500kb)</span></span>
<ul type="disc">
<li class="MsoNormal"><span style="color:#000000;"><span style="font-size:12pt;font-family:&quot;">HTML files and       Plain text</span></span></li>
<li class="MsoNormal"><span style="color:#000000;"><span style="font-size:12pt;font-family:&quot;">Microsoft Word,       Rich Text, OpenDocument Text and Star Office</span></span></li>
</ul>
</li>
</ol>
<p class="MsoNormal" style="margin-left:.75in;"><span style="color:#000000;"><span style="font-size:12pt;font-family:&quot;"> </span></span></p>
<ol type="1">
<li class="MsoNormal"><span style="color:#000000;"><span style="font-size:12pt;font-family:&quot;">Presentations (up to 10MB from Computer,      2MB from the web, 500KB from email)</span></span>
<ul type="disc">
<li class="MsoNormal"><span style="color:#000000;"><span style="font-size:12pt;font-family:&quot;">Microsoft       Powerpoint</span></span></li>
</ul>
</li>
</ol>
<p class="MsoNormal" style="margin-left:.75in;"><span style="color:#000000;"><span style="font-size:12pt;font-family:&quot;"> </span></span></p>
<ol type="1">
<li class="MsoNormal"><span style="color:#000000;"><span style="font-size:12pt;font-family:&quot;">Spreadsheets (up to 1MB)</span></span>
<ul type="disc">
<li class="MsoNormal"><span style="color:#000000;"><span style="font-size:12pt;font-family:&quot;">Comma Separated       Value</span></span></li>
<li class="MsoNormal"><span style="color:#000000;"><span style="font-size:12pt;font-family:&quot;">Microsoft Excel       and OpenDocument Spreadsheet</span></span></li>
</ul>
</li>
</ol>
<p class="MsoNormal"><span style="color:#000000;"><span style="font-size:12pt;font-family:&quot;">Limit of 1000 spread sheets</span></span></p>
<ol type="1">
<li class="MsoNormal"><span style="color:#000000;"><span style="font-size:12pt;font-family:&quot;">PDF (10MB from computer and 2MB from web)</span></span></li>
</ol>
<p class="MsoNormal"><span style="color:#000000;"><span style="font-size:12pt;font-family:&quot;"> </span></span></p>
<p class="MsoNormal"><span style="color:#000000;"><span style="font-size:12pt;font-family:&quot;">Overall, there is a combined limit of 5000 documents and presentations and 5000 images with Google Docs. Office Live Workspace allows for individual file sizes up to 25MB regardless of file type and up to 5GB of storage. </span></span></p>
<p class="MsoNormal"><span style="color:#000000;"><span style="font-size:12pt;font-family:&quot;">Office Live Workspace supports all of these files listed above however, has a <a title="Blocked list for OLW" href="http://office.microsoft.com/client/helppreview.aspx?AssetID=HA102322131033&amp;QueryID=El2DamYG00&amp;respos=1&amp;rt=2&amp;ns=OFLV20&amp;lcid=1033&amp;pid=CH102255881033" target="_blank"><span style="text-decoration:underline;">blocked list</span> </a>which users can not upload for the protection of the user. </span></span></p>
<p class="MsoNormal"><span style="color:#000000;"><span style="font-size:12pt;font-family:&quot;"> </span></span></p>
<p class="MsoNormal" style="text-align:center;" align="center"><span style="color:#000000;"><strong><span style="text-decoration:underline;"><span style="font-size:12pt;font-family:&quot;">FOLDER STRUCTURE</span></span></strong></span></p>
<p class="MsoNormal" style="text-align:center;" align="center"><span style="color:#000000;"><strong><span style="text-decoration:underline;"><span style="font-size:12pt;font-family:&quot;"><br />
</span></span></strong></span></p>
<p class="MsoNormal"><span style="color:#000000;"><span style="font-size:12pt;font-family:&quot;">In terms of layout of folders in the two web applications the easiest is definitely Google Docs. It is very similar to what a user would be utilising on their computer already in My Computer. The folder tree is on the right and uses plus and minus signs to signify extending and collapsing of folders. It also allows for subfolders to be added. This is different from what Office Live Workspace offers. OLW offers ‘workspaces’ which is basically a folder containing folders you want to combine together. However, there is no option for subfolders and I think it is harder for the user to comprehend. On both there is no drag and drop capability. </span></span></p>
<p class="MsoNormal"><span style="color:#000000;"><span style="font-size:12pt;font-family:&quot;"> </span></span></p>
<p class="MsoNormal" style="text-align:center;" align="center"><span style="color:#000000;"><strong><span style="text-decoration:underline;"><span style="font-size:12pt;font-family:&quot;">ONLINE VIEWING CAPABILITY</span></span></strong></span></p>
<p class="MsoNormal" style="text-align:center;" align="center"><span style="color:#000000;"><strong><span style="text-decoration:underline;"><span style="font-size:12pt;font-family:&quot;"><br />
</span></span></strong></span></p>
<p class="MsoNormal"><span style="color:#000000;"><span style="font-size:12pt;font-family:&quot;">Both web applications offer online creation and editing of documents in real time. However, files cannot be edited within a workspace on OLW Microsoft Office opens upon clicking ‘edit’. Add ons have to be downloaded and browsers shut to complete installation (annoying). </span></span></p>
<p class="MsoNormal"><span style="color:#000000;"><span style="font-size:12pt;font-family:&quot;"> </span></span></p>
<p class="MsoNormal" style="text-align:center;" align="center"><span style="color:#000000;"><strong><span style="text-decoration:underline;"><span style="font-size:12pt;font-family:&quot;">UPLOAD/DOWNLOAD FEATURES<br />
</span></span></strong></span></p>
<p class="MsoNormal" style="text-align:center;" align="center"><span style="color:#000000;"><strong><span style="text-decoration:underline;"><span style="font-size:12pt;font-family:&quot;"><br />
</span></span></strong></span></p>
<p class="MsoNormal"><span style="color:#000000;"><span style="font-size:12pt;font-family:&quot;">OLW posts documents to your workspace by clicking ‘add documents’ button. A pop up of files from My Documents appears. User selects document to upload and the document file appears on the workspace. GD is similar, however the user is navigated away from the page upon clicking on the ‘upload’ button. The user can select ‘Browse’, or entering a URL and gives the option of renaming the file. I have just been prompted by GD that they don’t support docX. I select a different file to upload and it appears in front of me and provides me with all the editing tools that are available on Microsoft Office. </span></span></p>
<p class="MsoNormal"><span style="color:#000000;"><span style="font-size:12pt;font-family:&quot;">Downloading files that I have created online are easily downloadable through clicking on the file so it appears. Selecting ‘file’ then ‘download file as..’. There are many options as to how you wish to download this file. </span></span></p>
<p class="MsoNormal"><span style="color:#000000;"><span style="font-size:12pt;font-family:&quot;"> </span></span></p>
<p class="MsoNormal" style="text-align:center;" align="center"><span style="color:#000000;"><strong><span style="text-decoration:underline;"><span style="font-size:12pt;font-family:&quot;">RECOMMENDATION</span></span></strong></span></p>
<p class="MsoNormal" style="text-align:center;" align="center"><span style="color:#000000;"><strong><span style="text-decoration:underline;"><span style="font-size:12pt;font-family:&quot;"><br />
</span></span></strong></span></p>
<p class="MsoNormal"><span style="color:#000000;"><span style="font-size:12pt;font-family:&quot;">I prefer and recommend Google Documents. It is easier to use and would be much more familiar to any PC user. The OLW has a unique touch however, it was too fiddly when it came to editing documents (add ons had to be downloaded and browsers shut to complete installation). GD was far more streamlined in the folder structure and general layout. </span></span></p>
<br />Posted in Uncategorized  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlhtml.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlhtml.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlhtml.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlhtml.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlhtml.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlhtml.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlhtml.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlhtml.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlhtml.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlhtml.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlhtml.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlhtml.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlhtml.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlhtml.wordpress.com/75/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlhtml.wordpress.com&amp;blog=6362715&amp;post=75&amp;subd=sqlhtml&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sqlhtml.wordpress.com/2009/04/07/office-live-workspace-vs-google-docs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9a7ccd3917744193d0d60275a0e9083?s=96&#38;d=identicon" medium="image">
			<media:title type="html">lcmk132</media:title>
		</media:content>

		<media:content url="http://sqlhtml.files.wordpress.com/2009/04/brill.jpg" medium="image">
			<media:title type="html">OLW vs. GD</media:title>
		</media:content>
	</item>
		<item>
		<title>How Web Apps Handle Layout&#8230;</title>
		<link>http://sqlhtml.wordpress.com/2009/04/01/how-web-apps-handle-layout/</link>
		<comments>http://sqlhtml.wordpress.com/2009/04/01/how-web-apps-handle-layout/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 10:54:02 +0000</pubDate>
		<dc:creator>lcmk132</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sqlhtml.wordpress.com/?p=60</guid>
		<description><![CDATA[GMAIL: Email Web Application Gmail: Login Page Gmail has used 2 text boxes for users to sign in. The input password textbox value will be hidden with black dots to increase security and the possibility of someone accessing a password. &#8230; <a href="http://sqlhtml.wordpress.com/2009/04/01/how-web-apps-handle-layout/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlhtml.wordpress.com&amp;blog=6362715&amp;post=60&amp;subd=sqlhtml&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:left;">
<h1 style="text-align:center;"><span style="color:#ff0000;">GMAIL: Email Web Application<br />
</span></h1>
<p style="text-align:center;"><span style="color:#ff0000;"><span style="text-decoration:underline;"><strong>Gmail: Login Page</strong></span></span></p>
<p style="text-align:center;"><span style="color:#000000;">Gmail has used 2 text boxes for users to sign in. The input password textbox value will be hidden with black dots to increase security and the possibility of someone accessing a password. A checkbox is used to signify if the user wants to be remembered on a particular computer. The &#8216;Sign In&#8217; Button is a submit button which onclick will access the XML document and check if username and password are true. If false &#8220;</span><span style="color:#ff0000;">The username or password you entered is incorrect.   [<a href="http://www.google.com/support/accounts/bin/answer.py?ctx=ch&amp;answer=27444&amp;hl=en" target="_blank">?</a>] </span>&#8221; is <span style="color:#000000;">displayed and the password box is cleared.</span></p>
<p style="text-align:center;"><strong><img class="size-full wp-image-61 aligncenter" title="gmail-log-in4" src="http://sqlhtml.files.wordpress.com/2009/04/gmail-log-in4.jpg?w=307&#038;h=389" alt="gmail-log-in4" width="307" height="389" /><br />
</strong></p>
<p style="text-align:left;">
<p style="text-align:center;"><span style="color:#ff0000;"><span style="text-decoration:underline;"><strong>Gmail: When Logged In</strong></span></span></p>
<p style="text-align:center;"><span style="color:#ff0000;"><strong></strong><span style="color:#333300;">Before this page is displayed a page is displayed showing the progress of how long it will take for your computer to load data from the server. This is displayed after the computer is connected to the Gmail server.  The top right shows &#8216;lkierath@gmail.com&#8217; indicating that I am signed in. Also the &#8216;Sign Out&#8217; button is displayed. The left bar shows a green symbol and &#8216;Louisa Kierath&#8217; also indicating that I am signed in. </span><strong><br />
</strong></span></p>
<p style="text-align:left;"><img class="aligncenter size-full wp-image-62" title="gmail-inside3" src="http://sqlhtml.files.wordpress.com/2009/04/gmail-inside3.jpg?w=500&#038;h=206" alt="gmail-inside3" width="500" height="206" /></p>
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<h1 style="text-align:center;"><span style="color:#33cccc;">WORD PRESS: Blogging Web Application<br />
</span></h1>
<p style="text-align:left;">
<p style="text-align:center;"><span style="color:#33cccc;"><span style="text-decoration:underline;"><strong>Word press: Login Page</strong></span></span></p>
<p style="text-align:center;"><span style="color:#33cccc;"><span style="color:#333300;">This login in box is very similar to Gmails in that it provides a user name and password textbox. It also has a &#8220;remember me&#8221; checkbox. The &#8216;Login&#8217; button is the &#8216;submit button&#8217;.  WordPress also displays a small padlock above the username textbox. I thought this was a nice touch to indicate or even give the impression that the site was safe. </span><br />
</span></p>
<p style="text-align:center;"><img class="size-full wp-image-64 alignnone" title="wordpress-login" src="http://sqlhtml.files.wordpress.com/2009/04/wordpress-login.jpg?w=203&#038;h=198" alt="wordpress-login" width="203" height="198" /></p>
<p style="text-align:center;">
<p style="text-align:center;"><strong>When password or username weren&#8217;t returned as true</strong></p>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-70" title="wordpress-wrong" src="http://sqlhtml.files.wordpress.com/2009/04/wordpress-wrong.jpg?w=346&#038;h=398" alt="wordpress-wrong" width="346" height="398" /></p>
<p style="text-align:center;"><span style="color:#33cccc;"><span style="text-decoration:underline;"><strong>WordPress: When Logged In</strong></span></span></p>
<p style="text-align:center;"><span style="color:#33cccc;"><span style="color:#333300;">When logged into wordpress the user knows they are logged in as their blog(s) are displayed on the left hand side of the page. It also welcomes users by &#8220;welcome back, (username here)&#8221;. </span><br />
</span></p>
<p style="text-align:center;"><strong><img class="aligncenter size-full wp-image-65" title="wordpress-inside" src="http://sqlhtml.files.wordpress.com/2009/04/wordpress-inside.jpg?w=191&#038;h=188" alt="wordpress-inside" width="191" height="188" /></strong></p>
<p style="text-align:center;">
<h1 style="text-align:center;"><span style="color:#ff00ff;">DEL.ICIO.US: Bookmark Organiser Web Application<br />
</span></h1>
<p style="text-align:center;">
<p style="text-align:center;"><span style="color:#ff00ff;"><span style="text-decoration:underline;"><strong>Del.icio.us: Login Page</strong></span></span></p>
<p style="text-align:center;"><span style="color:#ff00ff;"><span style="color:#333300;">The final investigation which was into Del.icio.us was again similar to the last two web applications.  If the username and password did not return true then a red warning message appears on the same page<br />
</span></span></p>
<h5 style="text-align:center;">Invalid username or password.<br />
Please try again</h5>
<p>The password textbox clears&#8230;</p>
<p style="text-align:center;"><span style="color:#ff00ff;"><br />
</span></p>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-66" title="delicious-login" src="http://sqlhtml.files.wordpress.com/2009/04/delicious-login.jpg?w=293&#038;h=216" alt="delicious-login" width="293" height="216" /></p>
<p style="text-align:center;"><span style="color:#ff00ff;"><span style="text-decoration:underline;"><strong>Del.icio.us: When Logged In</strong></span></span></p>
<p style="text-align:center;"><span style="color:#ff00ff;"><span style="color:#000000;">When the user is logged into Del.icio.us their username is used to personalise the whole page. All of the users bookmarks are displayed on the right hand side bar and also in the centre of the page. The &#8216;sign out&#8217; button is displayed in the top right corner.</span><br />
</span></p>
<p style="text-align:center;"><strong><img class="aligncenter size-full wp-image-67" title="delicious-inside" src="http://sqlhtml.files.wordpress.com/2009/04/delicious-inside.jpg?w=697&#038;h=436" alt="delicious-inside" width="697" height="436" /></strong>Overall, there are small differences in the layout that various web applications use. It is very common for websites to personalise based on what a users log in name is. However, there were differences when it came to users not entering the correct password. Page refreshes, new pages and even AJAX elements were used. <strong><br />
</strong></p>
<br />Posted in Uncategorized  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlhtml.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlhtml.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlhtml.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlhtml.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlhtml.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlhtml.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlhtml.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlhtml.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlhtml.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlhtml.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlhtml.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlhtml.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlhtml.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlhtml.wordpress.com/60/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlhtml.wordpress.com&amp;blog=6362715&amp;post=60&amp;subd=sqlhtml&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sqlhtml.wordpress.com/2009/04/01/how-web-apps-handle-layout/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9a7ccd3917744193d0d60275a0e9083?s=96&#38;d=identicon" medium="image">
			<media:title type="html">lcmk132</media:title>
		</media:content>

		<media:content url="http://sqlhtml.files.wordpress.com/2009/04/gmail-log-in4.jpg" medium="image">
			<media:title type="html">gmail-log-in4</media:title>
		</media:content>

		<media:content url="http://sqlhtml.files.wordpress.com/2009/04/gmail-inside3.jpg" medium="image">
			<media:title type="html">gmail-inside3</media:title>
		</media:content>

		<media:content url="http://sqlhtml.files.wordpress.com/2009/04/wordpress-login.jpg" medium="image">
			<media:title type="html">wordpress-login</media:title>
		</media:content>

		<media:content url="http://sqlhtml.files.wordpress.com/2009/04/wordpress-wrong.jpg" medium="image">
			<media:title type="html">wordpress-wrong</media:title>
		</media:content>

		<media:content url="http://sqlhtml.files.wordpress.com/2009/04/wordpress-inside.jpg" medium="image">
			<media:title type="html">wordpress-inside</media:title>
		</media:content>

		<media:content url="http://sqlhtml.files.wordpress.com/2009/04/delicious-login.jpg" medium="image">
			<media:title type="html">delicious-login</media:title>
		</media:content>

		<media:content url="http://sqlhtml.files.wordpress.com/2009/04/delicious-inside.jpg" medium="image">
			<media:title type="html">delicious-inside</media:title>
		</media:content>
	</item>
		<item>
		<title>AJAXxXxX&#8230;</title>
		<link>http://sqlhtml.wordpress.com/2009/04/01/ajaxxxxx/</link>
		<comments>http://sqlhtml.wordpress.com/2009/04/01/ajaxxxxx/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 09:46:01 +0000</pubDate>
		<dc:creator>lcmk132</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sqlhtml.wordpress.com/?p=53</guid>
		<description><![CDATA[AJAX stands for Asynchronous JavaScript And XML. AJAX is a new type of programming that provides for a way to use existing standards. With AJAX a programmer can create better, faster and more user-friendly web applications. It is based on &#8230; <a href="http://sqlhtml.wordpress.com/2009/04/01/ajaxxxxx/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlhtml.wordpress.com&amp;blog=6362715&amp;post=53&amp;subd=sqlhtml&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><!--[if gte mso 9]&gt;  Normal 0   false false false        MicrosoftInternetExplorer4  &lt;![endif]--><!--[if gte mso 9]&gt;   &lt;![endif]--><!--[if !mso]&gt;--></p>
<p class="MsoNormal"><strong> </strong></p>
<p class="MsoNormal">
<p class="MsoNormal"><a href="http://www.m-r-surplus.com/i//AJAX_Can.jpg"><img class="aligncenter" title="AJAX" src="http://www.m-r-surplus.com/i//AJAX_Can.jpg" alt="" width="400" height="315" /></a></p>
<p class="MsoNormal">
<p class="MsoNormal" style="text-align:center;">AJAX stands for Asynchronous JavaScript And XML. AJAX is a new type of programming that provides for a way to use existing standards. With AJAX a programmer can create better, faster and more user-friendly web applications. It is based on JavaScript and HTTP requests. With AJAX, web applications can retrieve data from the server ‘asynchronously’ in the background without interfering with the display and behaviour of the existing page. Asynchronously means that a webpage users HTTP requests between the browser (eg. Firefox) and the web server. It also means that data is not sent in a sequence. Ajax makes it possible to update a page without a refresh. Using Ajax, we can refresh a particular DOM object without refreshing the full page.. An advantage of this is quicker response, increase interactivity, allowing pages to be reloaded individually. The development of this language has led to an increase in the use of animation of web pages.</p>
<p class="MsoNormal" style="text-align:center;">
<p class="MsoNormal" style="text-align:center;">XMLHttpRequest allows a JavaScript program to send an HTTP request to a server and receive back a response containing an XML document. Firefox and IE treat this differently:</p>
<p class="MsoNormal" style="margin-left:.5in;text-align:center;text-indent:-.5in;">
<p class="MsoNormal" style="margin-left:.5in;text-align:center;text-indent:-.5in;"><strong><span style="text-decoration:underline;">CODE for XMLHttpRequest</span></strong></p>
<p class="MsoNormal" style="margin-left:.5in;text-align:center;text-indent:-.5in;"><strong><span style="text-decoration:underline;"><br />
</span></strong></p>
<ul style="text-align:center;" type="disc">
<li class="MsoNormal"><span style="text-decoration:underline;">For IE, use the following      Javascript</span>:</li>
</ul>
<p class="MsoNormal" style="text-align:center;"><span>var req = new ActiveXObject(&#8220;Microsoft.XMLHTTP&#8221;);</span></p>
<ul style="text-align:center;" type="disc">
<li class="MsoNormal"><span style="text-decoration:underline;">…for other browsers, use:</span></li>
</ul>
<p class="MsoNormal" style="text-align:center;"><span>var req = new XMLHttpRequest();</span></p>
<p class="MsoNormal" style="text-align:center;"><a href="http://www.omnytex.com/articles/xhrstruts/">http://www.omnytex.com/articles/xhrstruts/</a></p>
<p class="MsoNormal" style="text-align:center;">
<p style="text-align:center;"><strong><span style="text-decoration:underline;"><span style="font-family:Verdana;">Differences in IE and Firefox treatment of XMLHTTPRequest</span></span></strong></p>
<p style="text-align:center;"><span style="font-family:Verdana;"><a href="http://powerdream5.wordpress.com/2007/10/11/ajax-ie-and-firefox/">http://powerdream5.wordpress.com/2007/10/11/ajax-ie-and-firefox/</a></span></p>
<p style="text-align:center;"><span style="font-family:Verdana;"> </span></p>
<p class="MsoNormal" style="text-align:center;"><strong><span style="text-decoration:underline;"><span style="text-decoration:none;"> </span></span></strong></p>
<p class="MsoNormal" style="text-align:center;"><strong><span style="text-decoration:underline;">readyState and XMLHTTPRequest?</span></strong></p>
<p class="MsoNormal" style="text-align:center;">
<p class="MsoNormal" style="text-align:center;"><strong><span style="font-family:Verdana;">readyState:</span></strong> Return the current status of the request, read-only property.</p>
<p class="MsoNormal" style="text-align:center;"><span style="color:black;">The readyState property can take a value from 0 to 4 (0=UNINITIALIZED, 1=LOADING, 2=LOADED, 3=INTERACTIVE, 4=COMPLETED). A value of 4 (i.e., COMPLETED) means that receiving the response from the server is completed and the response data is available through properties of the XMLHTTP object. For the readyState property to reach the value of 4, this property changes the value four times (i.e., from LOADING to COMPLETED), so the HandleResponse function gets called four times for each response. To make sure that the data is available in the XMLHTTP object, the XmlHttp.readyState property is compared to the value of 4 in the HandleResponse function.<br />
If the readyState of the XMLHTTP instance has a value of 4, we then need to check its status property to make sure that a valid response was received.</span></p>
<p class="MsoNormal" style="text-align:center;">Major benefit of using XMLHTTPRequest?</p>
<p class="MsoNormal" style="text-align:center;">The major benefit of the XMLHTTPRequest is that there is no need for a page to refresh to show an addition of data.</p>
<p class="MsoNormal" style="text-align:center;">
<p class="MsoNormal" style="text-align:center;">Resources:</p>
<p class="MsoNormal" style="text-align:center;"><a href="http://www.w3schools.com/Ajax/Default.Asp">http://www.w3schools.com/Ajax/Default.Asp</a></p>
<p class="MsoNormal" style="text-align:center;"><a href="http://en.wikipedia.org/wiki/Ajax_(programming)">http://en.wikipedia.org/wiki/Ajax_(programming)</a></p>
<p class="MsoNormal" style="text-align:center;"><a href="http://www.w3schools.com/Ajax/ajax_httprequest.asp">http://www.w3schools.com/Ajax/ajax_httprequest.asp</a></p>
<p class="MsoNormal" style="text-align:center;">
<br />Posted in Uncategorized  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlhtml.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlhtml.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlhtml.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlhtml.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlhtml.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlhtml.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlhtml.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlhtml.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlhtml.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlhtml.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlhtml.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlhtml.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlhtml.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlhtml.wordpress.com/53/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlhtml.wordpress.com&amp;blog=6362715&amp;post=53&amp;subd=sqlhtml&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sqlhtml.wordpress.com/2009/04/01/ajaxxxxx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9a7ccd3917744193d0d60275a0e9083?s=96&#38;d=identicon" medium="image">
			<media:title type="html">lcmk132</media:title>
		</media:content>

		<media:content url="http://www.m-r-surplus.com/i//AJAX_Can.jpg" medium="image">
			<media:title type="html">AJAX</media:title>
		</media:content>
	</item>
		<item>
		<title>Online Storage&#8230;</title>
		<link>http://sqlhtml.wordpress.com/2009/04/01/online-storage/</link>
		<comments>http://sqlhtml.wordpress.com/2009/04/01/online-storage/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 07:09:00 +0000</pubDate>
		<dc:creator>lcmk132</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sqlhtml.wordpress.com/?p=41</guid>
		<description><![CDATA[Online storage sites: • Z-share: http://www.zshare.net/ • Photo bucket: http://photobucket.com/ Z-SHARE Z-share is primarily a free site which enables users to upload files, images, audio and flash. The maximum upload size is 500MB and up to 2GB for premium users. &#8230; <a href="http://sqlhtml.wordpress.com/2009/04/01/online-storage/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlhtml.wordpress.com&amp;blog=6362715&amp;post=41&amp;subd=sqlhtml&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Online storage sites:<br />
•	Z-share: <a href="http://www.zshare.net/">http://www.zshare.net/</a></p>
<p>•	Photo bucket: <a onclick="return mugicPopWin(this,event);" oncontextmenu="mugicRightClick(this);" href="http://photobucket.com/">http://photobucket.com/</a></p>
<p style="text-align:center;">Z-SHARE</p>
<p style="text-align:center;">Z-share is primarily a free site which enables users to upload files, images, audio and flash. The maximum upload size is 500MB and up to 2GB for premium users. A premium user accounts starts at 30 days for $5 and up to $30 for a 1 year account. If you are not a member the upload limit is 500MB, there is unlimited downloads in 24 hours, there is 50 seconds waiting time before each download begins, there are very limited maximum parallel downloads, cannot upload multiple files at once, there is the maximum amount of advertising, no protection of files, you can send files to friends, and there is no use of download accelerators. Z-share files are only held for 60 days.</p>
<p style="text-align:center;">After uploading you are given a link to your files that can be shared via email, forums, myspace etc.</p>
<p style="text-align:center;">PHOTOBUCKET</p>
<p style="text-align:center;">Photobucket is a site for uploading, sharing, linking and finding photos, videos and graphics. A free Photobucket account can store thousands of photos and hours of video.</p>
<p style="text-align:center;">Can share photos, videos and albums by email, IM, and mobile phone. Z-share does not provide a sharing via SMS utility. Friends and family don’t need a Photobucket account to see files. This is the same as z-share. Allows group albums, to let you collaborate together with friends in a single group album of photos and videos. Z-share does not provide this. Hundreds of album themes are provided to design and personalize photos and video albums. Z-share is much more basic than this. There is no option for personal customization. A built in organizer is provided. This is provided on z-share when you pay to become a member or premium member. As a free user z-share does not offer this. Photobucket offers a built in full featured photoeditor that allows users to fix photos, as well has edit them in a unique way with frames, stickers, and special effects. Again, Z-share is not as elaborate as this. Built in searching to find that latest and best photos, images and videos is provided by photobucket. Z-share does not provide a search utility. A scrapbook builder is provided by photobucket to build online and printed scrapbooks by simply dragging and dropping into one of the hundreds of pre-built scrapbook designs for share. Z-share does not offer this service. Photobucket also provides a slideshow building with lots of fun styles for posting and sharing on websites, blogs or your profile. There is no option for building slideshows with z-share. It only provides links for downloads that can be posted on websites and blogs. Photobucket provides a photo and prints gift sore that lets you print pictures as well as add them to various items (greeting cards, shirts etc), you can also pick up prints if in the US from Target stores. There is no option to do this on Z-share.</p>
<p style="text-align:center;">Photobucket is a much more elaborate site with many more options and facilities for the user. Z-share is very basic and essentially only offers and upload and store service.</p>
<br />Posted in Uncategorized  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlhtml.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlhtml.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlhtml.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlhtml.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlhtml.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlhtml.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlhtml.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlhtml.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlhtml.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlhtml.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlhtml.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlhtml.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlhtml.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlhtml.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlhtml.wordpress.com&amp;blog=6362715&amp;post=41&amp;subd=sqlhtml&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sqlhtml.wordpress.com/2009/04/01/online-storage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9a7ccd3917744193d0d60275a0e9083?s=96&#38;d=identicon" medium="image">
			<media:title type="html">lcmk132</media:title>
		</media:content>
	</item>
		<item>
		<title>DHTML Object Model&#8230;</title>
		<link>http://sqlhtml.wordpress.com/2009/03/04/dhtml-object-model/</link>
		<comments>http://sqlhtml.wordpress.com/2009/03/04/dhtml-object-model/#comments</comments>
		<pubDate>Wed, 04 Mar 2009 11:32:32 +0000</pubDate>
		<dc:creator>lcmk132</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sqlhtml.wordpress.com/?p=37</guid>
		<description><![CDATA[After reading &#8220;About the DHTML Object Model (DOM)&#8221; it gave me insight into what happens when the DOM is implemented. Basically this model allows for specific HTML elements to be programmed. Each element can have it&#8217;s own script behind it &#8230; <a href="http://sqlhtml.wordpress.com/2009/03/04/dhtml-object-model/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlhtml.wordpress.com&amp;blog=6362715&amp;post=37&amp;subd=sqlhtml&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;">
<p style="text-align:center;"><span class="fnt0"><span class="alignleft">After reading <a title="About DOM" href="About the DHTML Object Model (DOM)&quot;." target="_blank">&#8220;About the  DHTML Object Model </a></span><span class="alignleft"> (DOM)&#8221;</span> it gave me insight into what happens when the DOM is implemented. Basically this model allows for specific HTML elements to be programmed. Each element can have it&#8217;s own script behind it to allow for user interaction.<br />
</span></p>
<p style="text-align:center;"><span class="fnt0">The model focuses on collections of elements.  There are 3 different types of collections:</span></p>
<p style="text-align:center;"><span class="fnt0">1. All: Contains all elements that are beneath that element in the hierarchy<br />
</span></p>
<p style="text-align:center;"><span class="fnt0">2. Parent: Element directly above a child element<br />
</span></p>
<p style="text-align:center;"><span class="fnt0">3. Child: Direct decedent of an element<br />
</span></p>
<p style="text-align:center;"><span class="fnt0"><br />
</span></p>
<p style="text-align:center;">
<p style="text-align:center;"><strong>Internet Explorer supports the </strong><strong>all collection whereas  	the W3C standard uses the </strong><strong>getElementById() method. Describe  	the difference this makes to accessing a particular HTML element in  	JavaScript.</strong></p>
<p style="text-align:center;">The following <code>document</code> object properties are not supported in the <abbr title="World Wide Web Consortium">W3C</abbr> Document Object Model:</p>
<ul style="text-align:center;">
<li> <code>document.layers[]</code></li>
<li> <code>id_attribute_value</code></li>
<li> <code>document.all</code></li>
<li> <code>document.all.id_attribute_value</code></li>
<li> <code>document.all[id_attribute_value]</code></li>
</ul>
<p>Scripts that use these properties will not execute in Firefox, Camino, Seamonkey or other standards-compliant browsers.  So that these properties do execute the W3C access attributes and access methods should be used. These are supported by internet explorer too.<strong></strong></p>
<table id="dom_access" class="standard-table" border="0" cellpadding="4" summary="List of Internet Explorer specific ways to access elements in a document or form elements (1st, left column) and their respective W3C web standards replacements (2nd, right column)">
<tbody>
<tr>
<th scope="col">IE-specific ways to access elements</th>
<th scope="col"> <abbr title="World Wide Web Consortium">W3C</abbr> web standards replacements</th>
</tr>
<tr>
<td>id_attribute_value</td>
<td>document.getElementById(id_attribute_value)</td>
</tr>
<tr>
<td>document.all.id_attribute_value</td>
<td>document.getElementById(id_attribute_value)</td>
</tr>
<tr>
<td>document.all[id_attribute_value]</td>
<td>document.getElementById(id_attribute_value)</td>
</tr>
<tr>
<td>FormName.InputName.value</td>
<td>document.forms["FormName"].InputName.value or<br />
document.forms["FormName"].elements["InputName"].value</td>
</tr>
<tr>
<td>InputName.value</td>
<td>document.forms["FormName"].InputName.value or<br />
document.forms["FormName"].elements["InputName"].value</td>
</tr>
<tr>
<td>FormCtrlName</td>
<td>document.forms["FormName"].FormCtrlName or<br />
document.forms["FormName"].elements["FormCtrlName"]</td>
</tr>
<tr>
<td>document.forms(0)</td>
<td>document.forms[0]</td>
</tr>
</tbody>
</table>
<p style="text-align:center;"><strong>What is the difference between the keypress and keydown events?</strong></p>
<p style="text-align:center;">Onkeypress: Presses and releases a key (full down and up cycle). however, if a key is held down, multiple onkeypress events are fired.</p>
<p style="text-align:center;">Onkeydown: presses a key. Only a single event is fired, even if they key  is held down.</p>
<p style="text-align:center;"><strong>What is meant by event bubbling?</strong></p>
<p style="text-align:center;">Event bubbling makes it easier for the HTML author to handle events. It allows for multiple common actions to be handled centrally. It reduces the amount of overall code and code changes required to update a document.</p>
<p style="text-align:center;"><strong>How do you cancel an event?</strong></p>
<p style="text-align:center;">If an event is not canceled it bubbles through the document to the parent element unless the event is canceled. To cancel set the                  &#8220;window.event.cancelBubble=true;&#8221;            in the event handler.</p>
<p style="text-align:center;">
<p style="text-align:center;">
<p style="text-align:center;">
<br />Posted in Uncategorized  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlhtml.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlhtml.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlhtml.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlhtml.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlhtml.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlhtml.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlhtml.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlhtml.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlhtml.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlhtml.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlhtml.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlhtml.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlhtml.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlhtml.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlhtml.wordpress.com&amp;blog=6362715&amp;post=37&amp;subd=sqlhtml&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sqlhtml.wordpress.com/2009/03/04/dhtml-object-model/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9a7ccd3917744193d0d60275a0e9083?s=96&#38;d=identicon" medium="image">
			<media:title type="html">lcmk132</media:title>
		</media:content>
	</item>
		<item>
		<title>The Tag</title>
		<link>http://sqlhtml.wordpress.com/2009/02/09/the-tag/</link>
		<comments>http://sqlhtml.wordpress.com/2009/02/09/the-tag/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 12:21:39 +0000</pubDate>
		<dc:creator>lcmk132</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sqlhtml.wordpress.com/?p=29</guid>
		<description><![CDATA[The purpose of the &#60;form&#62; tag is to create an application like box in which a user can input data.  Form tags are used for survey like web pages where a user may need to input data such as ‘Name’. &#8230; <a href="http://sqlhtml.wordpress.com/2009/02/09/the-tag/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlhtml.wordpress.com&amp;blog=6362715&amp;post=29&amp;subd=sqlhtml&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><img class="aligncenter size-full wp-image-30" title="Lorem Ipsum" src="http://sqlhtml.files.wordpress.com/2009/02/untitled.jpg?w=500&#038;h=521" alt="Lorem Ipsum" width="500" height="521" /><br />
The purpose of the &lt;form&gt; tag is to create an application like box in which a user can input data.  Form tags are used for survey like web pages where a user may need to input data such as ‘Name’.</p>
<p style="text-align:center;">
The typical contents found between &lt;form&gt; and &lt;/form&gt; is the ‘action’ attribute, ‘method’ attribute, ‘div’ element, ‘label’ element, ‘input’ element, ‘textarea’ element, ‘row and column’ attributes, ‘size’ attribute, and  ‘input’ element.</p>
<p style="text-align:center;">
The ‘action’ attribute specifies a URL to where information from the form is to be sent. The ‘method’ attribute specifies the HTTP method that will be used to make the request. This is either done via the ‘get’ or ‘post’ attributes.  The ‘div’ element defines logical divisions within the document. This means that when you use a &lt;div&gt; element, you are indicating that the enclosed content is a specific section of the page. The ‘label’ element is used to associate text with another element on the form. For example ‘age’ is the label.  The ‘input’ and ‘textarea’ elements are HTML controls. The ‘input’ element displays a box one character tall by a number of characters wide that is specified using the ‘size’ attribute. The ‘textarea’ control is similar however, it allows the user to enter multiple lines of data. The size of ‘textarea’ is specified using row and column attributes. These are the typical contents that are found between &lt;form&gt; and &lt;/form&gt;. &#8216;Enctype&#8217; determines how the form data is encoded. Whenever data is transmitted from one place to another, there needs to be an agreed upon means of representing that data.</p>
<br />Posted in Uncategorized  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlhtml.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlhtml.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlhtml.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlhtml.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlhtml.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlhtml.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlhtml.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlhtml.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlhtml.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlhtml.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlhtml.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlhtml.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlhtml.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlhtml.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlhtml.wordpress.com&amp;blog=6362715&amp;post=29&amp;subd=sqlhtml&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sqlhtml.wordpress.com/2009/02/09/the-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9a7ccd3917744193d0d60275a0e9083?s=96&#38;d=identicon" medium="image">
			<media:title type="html">lcmk132</media:title>
		</media:content>

		<media:content url="http://sqlhtml.files.wordpress.com/2009/02/untitled.jpg" medium="image">
			<media:title type="html">Lorem Ipsum</media:title>
		</media:content>
	</item>
		<item>
		<title>Numero Uno&#8230;</title>
		<link>http://sqlhtml.wordpress.com/2009/02/03/numero-uno/</link>
		<comments>http://sqlhtml.wordpress.com/2009/02/03/numero-uno/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 06:28:20 +0000</pubDate>
		<dc:creator>lcmk132</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sqlhtml.wordpress.com/?p=6</guid>
		<description><![CDATA[Welcome to SQLHTML! Currently, I am running another blog http://madnessandextravagance.wordpress.com I blog about anything that I find interesting mostly within fashion, culture, art and music. I&#8217;ve only recently started doing it and I haven&#8217;t done a post in weeks. As &#8230; <a href="http://sqlhtml.wordpress.com/2009/02/03/numero-uno/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlhtml.wordpress.com&amp;blog=6362715&amp;post=6&amp;subd=sqlhtml&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><a href="http://imageshack.us"><img src="http://img214.imageshack.us/img214/9024/n20480095430730401283lc9.jpg" border="5" alt="Image Hosted by ImageShack.us" /></a></p>
<p style="text-align:center;"><strong>Welcome to SQLHTML! </strong></p>
<p style="text-align:center;">Currently, I am running another blog <a href="http://madnessandextravagance.wordpress.com">http://madnessandextravagance.wordpress.com</a></p>
<p style="text-align:center;">I blog about anything that I find interesting mostly within fashion, culture, art and music. I&#8217;ve only recently started doing it and I haven&#8217;t done a post in weeks.</p>
<p style="text-align:center;">As for experience in programming I&#8217;ve got zero. However, I&#8217;m interested to know how to do it :)</p>
<br />Posted in Uncategorized  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sqlhtml.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sqlhtml.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sqlhtml.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sqlhtml.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sqlhtml.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sqlhtml.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sqlhtml.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sqlhtml.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sqlhtml.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sqlhtml.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sqlhtml.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sqlhtml.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sqlhtml.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sqlhtml.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sqlhtml.wordpress.com&amp;blog=6362715&amp;post=6&amp;subd=sqlhtml&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sqlhtml.wordpress.com/2009/02/03/numero-uno/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9a7ccd3917744193d0d60275a0e9083?s=96&#38;d=identicon" medium="image">
			<media:title type="html">lcmk132</media:title>
		</media:content>

		<media:content url="http://img214.imageshack.us/img214/9024/n20480095430730401283lc9.jpg" medium="image">
			<media:title type="html">Image Hosted by ImageShack.us</media:title>
		</media:content>
	</item>
	</channel>
</rss>
