<?xml version="1.0" encoding="utf-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Williamsport Web Developer Weblog</title>
	<atom:link href="http://williamsportwebdeveloper.com/cgi/wp/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://williamsportwebdeveloper.com/cgi/wp</link>
	<description>Brief notes on what I am up to as a web developer in Williamsport PA, Lycoming County.</description>
	<lastBuildDate>Fri, 27 Apr 2012 17:41:34 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on Mobile Web Site Design &#8211; Scale Images by Jason</title>
		<link>http://williamsportwebdeveloper.com/cgi/wp/?p=875&#038;cpage=1#comment-136076</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Fri, 27 Apr 2012 17:41:34 +0000</pubDate>
		<guid isPermaLink="false">http://williamsportwebdeveloper.com/cgi/wp/?p=875#comment-136076</guid>
		<description>Hello friend! Great code, But where exactly can I empliment this code into my site? I use wordpress as well. Let me know !

-Jason</description>
		<content:encoded><![CDATA[<p>Hello friend! Great code, But where exactly can I empliment this code into my site? I use wordpress as well. Let me know !</p>
<p>-Jason</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 6 Ways To Work With Dates In JavaScript by Brent McSharry</title>
		<link>http://williamsportwebdeveloper.com/cgi/wp/?p=503&#038;cpage=1#comment-136055</link>
		<dc:creator>Brent McSharry</dc:creator>
		<pubDate>Tue, 10 Apr 2012 20:15:00 +0000</pubDate>
		<guid isPermaLink="false">http://williamsportwebdeveloper.com/cgi/wp/?p=503#comment-136055</guid>
		<description>I stumbled accross this site looking for a fix for ie 7 &amp; 8 (no toISOString support).
 
I am not a programmer, but thought it is probably worth using your nice but of code to define a toISOString method if it doesn&#039;t have native browser supporrt:

function checkISOdate() {
	if (!Date.toISOString) {
		var padzero = function(n) {
			return n &lt; 10 ? &#039;0&#039; + n : n;
		}
		var pad2zeros = function(n) {
			if (n &lt; 100) {n = &#039;0&#039; + n;}
			if (n &lt; 10) {n = &#039;0&#039; + n;} 
			return n;
		} 
		Date.prototype.toISOString =function() {
			return this.getUTCFullYear() + &#039;-&#039; +  padzero(this.getUTCMonth() + 1) + &#039;-&#039; + padzero(this.getUTCDate()) + &#039;T&#039; + padzero(this.getUTCHours()) + &#039;:&#039; +  padzero(this.getUTCMinutes()) + &#039;:&#039; + padzero(this.getUTCSeconds()) + &#039;.&#039; + pad2zeros(this.getUTCMilliseconds()) + &#039;Z&#039;;
		} 
	}
}</description>
		<content:encoded><![CDATA[<p>I stumbled accross this site looking for a fix for ie 7 &amp; 8 (no toISOString support).</p>
<p>I am not a programmer, but thought it is probably worth using your nice but of code to define a toISOString method if it doesn&#8217;t have native browser supporrt:</p>
<p>function checkISOdate() {<br />
	if (!Date.toISOString) {<br />
		var padzero = function(n) {<br />
			return n &lt; 10 ? &#039;0&#039; + n : n;<br />
		}<br />
		var pad2zeros = function(n) {<br />
			if (n &lt; 100) {n = &#039;0&#039; + n;}<br />
			if (n &lt; 10) {n = &#039;0&#039; + n;}<br />
			return n;<br />
		}<br />
		Date.prototype.toISOString =function() {<br />
			return this.getUTCFullYear() + &#039;-&#039; +  padzero(this.getUTCMonth() + 1) + &#039;-&#039; + padzero(this.getUTCDate()) + &#039;T&#039; + padzero(this.getUTCHours()) + &#039;:&#039; +  padzero(this.getUTCMinutes()) + &#039;:&#039; + padzero(this.getUTCSeconds()) + &#039;.&#039; + pad2zeros(this.getUTCMilliseconds()) + &#039;Z&#039;;<br />
		}<br />
	}<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 6 Ways To Work With Dates In JavaScript by Zak</title>
		<link>http://williamsportwebdeveloper.com/cgi/wp/?p=503&#038;cpage=1#comment-136049</link>
		<dc:creator>Zak</dc:creator>
		<pubDate>Mon, 09 Apr 2012 03:37:12 +0000</pubDate>
		<guid isPermaLink="false">http://williamsportwebdeveloper.com/cgi/wp/?p=503#comment-136049</guid>
		<description>Appreciate this post. I was aware of some Firefox inconsistencies but could not remember how to setup the Date() constructor. Thanks!</description>
		<content:encoded><![CDATA[<p>Appreciate this post. I was aware of some Firefox inconsistencies but could not remember how to setup the Date() constructor. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How To Create A JSON Web Service In ASP.NET by dila</title>
		<link>http://williamsportwebdeveloper.com/cgi/wp/?p=494&#038;cpage=1#comment-136008</link>
		<dc:creator>dila</dc:creator>
		<pubDate>Mon, 12 Mar 2012 04:39:34 +0000</pubDate>
		<guid isPermaLink="false">http://williamsportwebdeveloper.com/cgi/wp/?p=494#comment-136008</guid>
		<description>Very good tutorial
thax a lot</description>
		<content:encoded><![CDATA[<p>Very good tutorial<br />
thax a lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How To Create A JSON Web Service In ASP.NET by ton</title>
		<link>http://williamsportwebdeveloper.com/cgi/wp/?p=494&#038;cpage=1#comment-135804</link>
		<dc:creator>ton</dc:creator>
		<pubDate>Tue, 24 Jan 2012 15:30:10 +0000</pubDate>
		<guid isPermaLink="false">http://williamsportwebdeveloper.com/cgi/wp/?p=494#comment-135804</guid>
		<description>I&#039;m not getting the example running
I just started VS2008 new website in VB, removed the html, copy pated the example website. Added style.css and jquery-1.3.2.min.js 
and nothing happens.
Only the table heading is shown. trying to show an alert in a function does not work either.
Do i miss something?

Ton</description>
		<content:encoded><![CDATA[<p>I&#8217;m not getting the example running<br />
I just started VS2008 new website in VB, removed the html, copy pated the example website. Added style.css and jquery-1.3.2.min.js<br />
and nothing happens.<br />
Only the table heading is shown. trying to show an alert in a function does not work either.<br />
Do i miss something?</p>
<p>Ton</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How To Create A JSON Web Service In ASP.NET by prashiddha</title>
		<link>http://williamsportwebdeveloper.com/cgi/wp/?p=494&#038;cpage=1#comment-133678</link>
		<dc:creator>prashiddha</dc:creator>
		<pubDate>Tue, 03 Jan 2012 11:09:23 +0000</pubDate>
		<guid isPermaLink="false">http://williamsportwebdeveloper.com/cgi/wp/?p=494#comment-133678</guid>
		<description>I tried the post and got the result.......&lt;a href=&quot;http://prashiddha.com.np/?page_id=202&quot; rel=&quot;nofollow&quot;&gt;CODE HERE&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>I tried the post and got the result&#8230;&#8230;.<a href="http://prashiddha.com.np/?page_id=202" rel="nofollow">CODE HERE</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Neue Galerie Museum &#8211; Schnee Sturm Reise by Interpret schneeflocken &#124; Collectionagenciessuck</title>
		<link>http://williamsportwebdeveloper.com/cgi/wp/?p=634&#038;cpage=1#comment-131193</link>
		<dc:creator>Interpret schneeflocken &#124; Collectionagenciessuck</dc:creator>
		<pubDate>Wed, 14 Dec 2011 09:32:13 +0000</pubDate>
		<guid isPermaLink="false">http://williamsportwebdeveloper.com/cgi/wp/?p=634#comment-131193</guid>
		<description>[...] Neue Galerie Museum &#8211; Schnee Sturm Reise &#124; Williamsport Web &#8230;Feb 7, 2010 &#8230; Neue Galerie Museum &#8211; Schnee Sturm Reise &#8230;. I don&#8217;t know if I&#8217;ll ever read The Sleepwalkers, a 648 page novel which deserves the modern &#8230; [...]</description>
		<content:encoded><![CDATA[<p>[...] Neue Galerie Museum &#8211; Schnee Sturm Reise | Williamsport Web &#8230;Feb 7, 2010 &#8230; Neue Galerie Museum &#8211; Schnee Sturm Reise &#8230;. I don&#8217;t know if I&#8217;ll ever read The Sleepwalkers, a 648 page novel which deserves the modern &#8230; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Export YouTube Favorites To Excel by Sam</title>
		<link>http://williamsportwebdeveloper.com/cgi/wp/?p=245&#038;cpage=1#comment-128796</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Wed, 23 Nov 2011 19:38:04 +0000</pubDate>
		<guid isPermaLink="false">http://williamsportwebdeveloper.com/cgi/wp/?p=245#comment-128796</guid>
		<description>works like charm and takes like 2 seconds, thanks for sharing</description>
		<content:encoded><![CDATA[<p>works like charm and takes like 2 seconds, thanks for sharing</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How To Create A JSON Web Service In ASP.NET by Prayoga</title>
		<link>http://williamsportwebdeveloper.com/cgi/wp/?p=494&#038;cpage=1#comment-128247</link>
		<dc:creator>Prayoga</dc:creator>
		<pubDate>Fri, 18 Nov 2011 17:48:33 +0000</pubDate>
		<guid isPermaLink="false">http://williamsportwebdeveloper.com/cgi/wp/?p=494#comment-128247</guid>
		<description>I&#039;ve try this JSON web service, but mine problem is status text OK parse error. Can anyone help to fix this problem? Please help.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve try this JSON web service, but mine problem is status text OK parse error. Can anyone help to fix this problem? Please help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How To Create A JSON Web Service In ASP.NET by Radu</title>
		<link>http://williamsportwebdeveloper.com/cgi/wp/?p=494&#038;cpage=1#comment-128102</link>
		<dc:creator>Radu</dc:creator>
		<pubDate>Thu, 17 Nov 2011 15:59:19 +0000</pubDate>
		<guid isPermaLink="false">http://williamsportwebdeveloper.com/cgi/wp/?p=494#comment-128102</guid>
		<description>Is not working with DataSets:

The value for column &#039;ArticleID&#039; in table &#039;Vendors&#039; is DBNull.</description>
		<content:encoded><![CDATA[<p>Is not working with DataSets:</p>
<p>The value for column &#8216;ArticleID&#8217; in table &#8216;Vendors&#8217; is DBNull.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

