<?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 Brian Dobberteen</title>
	<atom:link href="http://brian.dobberteen.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://brian.dobberteen.com</link>
	<description>Fun With Web Development!</description>
	<lastBuildDate>Wed, 14 Jul 2010 02:43:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Using a PageMethod to Look Up City and State based on Zip Code by Bhuvan</title>
		<link>http://brian.dobberteen.com/code/using-a-pagemethod-to-look-up-city-and-state-based-on-zip-code/comment-page-1/#comment-815</link>
		<dc:creator>Bhuvan</dc:creator>
		<pubDate>Wed, 14 Jul 2010 02:43:50 +0000</pubDate>
		<guid isPermaLink="false">http://brian.dobberteen.com/?p=24#comment-815</guid>
		<description>Great tutorial. Though it did not work for me in VS2008 and C#.
Error with page methods. But still seemed a good tutorial
Thanks</description>
		<content:encoded><![CDATA[<p>Great tutorial. Though it did not work for me in VS2008 and C#.<br />
Error with page methods. But still seemed a good tutorial<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Check Existing Values with ASP.NET CustomValidator + jQuery $.ajax() by Asp.net Custom Validator and Jquery $.ajax() &#171; Pankaj Lalwani&#8217;s Blog</title>
		<link>http://brian.dobberteen.com/code/jquery_ajax_custom_validator/comment-page-1/#comment-813</link>
		<dc:creator>Asp.net Custom Validator and Jquery $.ajax() &#171; Pankaj Lalwani&#8217;s Blog</dc:creator>
		<pubDate>Mon, 12 Jul 2010 07:00:29 +0000</pubDate>
		<guid isPermaLink="false">http://brian.dobberteen.com/?p=146#comment-813</guid>
		<description>[...] http://brian.dobberteen.com/other-stuff/jquery_ajax_custom_validator/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://brian.dobberteen.com/other-stuff/jquery_ajax_custom_validator/" rel="nofollow">http://brian.dobberteen.com/other-stuff/jquery_ajax_custom_validator/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Check Existing Values with ASP.NET CustomValidator + jQuery $.ajax() by Dew Dump &#8211; June 19, 2010 &#124; Alvin Ashcraft&#39;s Morning Dew</title>
		<link>http://brian.dobberteen.com/code/jquery_ajax_custom_validator/comment-page-1/#comment-761</link>
		<dc:creator>Dew Dump &#8211; June 19, 2010 &#124; Alvin Ashcraft&#39;s Morning Dew</dc:creator>
		<pubDate>Sun, 20 Jun 2010 00:59:33 +0000</pubDate>
		<guid isPermaLink="false">http://brian.dobberteen.com/?p=146#comment-761</guid>
		<description>[...] Check for Existing Values with ASP.NET CustomValidator + jQuery $.ajax() (Brian Dobberteen) [...]</description>
		<content:encoded><![CDATA[<p>[...] Check for Existing Values with ASP.NET CustomValidator + jQuery $.ajax() (Brian Dobberteen) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using LINQ to XML instead of XmlReader by GazNewt</title>
		<link>http://brian.dobberteen.com/code/using-linq-to-xml-instead-of-xmlreader/comment-page-1/#comment-742</link>
		<dc:creator>GazNewt</dc:creator>
		<pubDate>Tue, 08 Jun 2010 22:29:16 +0000</pubDate>
		<guid isPermaLink="false">http://brian.dobberteen.com/?p=87#comment-742</guid>
		<description>I had a similar decision to make about handling XML in a more &quot;modern&quot; way. In the end I went for this kind of thing

foreach( var oElement in oParentElement.Elements())
{
	switch( oElement.Name.LocalName.ToLower())
	{
		case &quot;id&quot; : oObject.Id = oElement.Value; break;
		case &quot;items&quot; : LoadItems( oObject, oElement); break;
	}
}

Quite a lot of code in the end but it works as a forward reader quite nicely

I gave a little bit of though about using LINQ to XML but it seemed overkill, I assumed it would be a lot slower than forward reading</description>
		<content:encoded><![CDATA[<p>I had a similar decision to make about handling XML in a more &#8220;modern&#8221; way. In the end I went for this kind of thing</p>
<p>foreach( var oElement in oParentElement.Elements())<br />
{<br />
	switch( oElement.Name.LocalName.ToLower())<br />
	{<br />
		case &#8220;id&#8221; : oObject.Id = oElement.Value; break;<br />
		case &#8220;items&#8221; : LoadItems( oObject, oElement); break;<br />
	}<br />
}</p>
<p>Quite a lot of code in the end but it works as a forward reader quite nicely</p>
<p>I gave a little bit of though about using LINQ to XML but it seemed overkill, I assumed it would be a lot slower than forward reading</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Responding to jQuery AJAX Request with PHP by Check for Existing Values with ASP.NET CustomValidator + jQuery $.ajax() &#171; Brian Dobberteen</title>
		<link>http://brian.dobberteen.com/code/responding-to-jquery-ajax-request-with-php/comment-page-1/#comment-524</link>
		<dc:creator>Check for Existing Values with ASP.NET CustomValidator + jQuery $.ajax() &#171; Brian Dobberteen</dc:creator>
		<pubDate>Sat, 06 Mar 2010 17:29:01 +0000</pubDate>
		<guid isPermaLink="false">http://brian.dobberteen.com/?p=60#comment-524</guid>
		<description>[...] inside our Default.aspx page. This is only one of many ways to accomplish this, of course. See http://brian.dobberteen.com/code/responding-to-jquery-ajax-request-with-php/ for my treatment of using PHP as a &#8216;web service&#8217; of [...]</description>
		<content:encoded><![CDATA[<p>[...] inside our Default.aspx page. This is only one of many ways to accomplish this, of course. See <a href="http://brian.dobberteen.com/code/responding-to-jquery-ajax-request-with-php/" rel="nofollow">http://brian.dobberteen.com/code/responding-to-jquery-ajax-request-with-php/</a> for my treatment of using PHP as a &#8216;web service&#8217; of [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Calling a PageMethod with jQuery by brian</title>
		<link>http://brian.dobberteen.com/code/calling-a-pagemethod-with-jquery/comment-page-1/#comment-77</link>
		<dc:creator>brian</dc:creator>
		<pubDate>Wed, 28 Oct 2009 03:25:13 +0000</pubDate>
		<guid isPermaLink="false">http://brian.dobberteen.com/?p=34#comment-77</guid>
		<description>Hi Ali,

I appreciate the suggestion and will definitely consider it for my next post.  Thanks!!

- brian</description>
		<content:encoded><![CDATA[<p>Hi Ali,</p>
<p>I appreciate the suggestion and will definitely consider it for my next post.  Thanks!!</p>
<p>- brian</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Calling a PageMethod with jQuery by ali raza zaidi</title>
		<link>http://brian.dobberteen.com/code/calling-a-pagemethod-with-jquery/comment-page-1/#comment-74</link>
		<dc:creator>ali raza zaidi</dc:creator>
		<pubDate>Tue, 27 Oct 2009 11:12:15 +0000</pubDate>
		<guid isPermaLink="false">http://brian.dobberteen.com/?p=34#comment-74</guid>
		<description>i m new to jquery and ajax, kindly send me complete example where ado.net dataset/datatable send using webservices and bind with jquery at client side 
regards
Ali raza</description>
		<content:encoded><![CDATA[<p>i m new to jquery and ajax, kindly send me complete example where ado.net dataset/datatable send using webservices and bind with jquery at client side<br />
regards<br />
Ali raza</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Calling a PageMethod with jQuery by Sangam Uprety</title>
		<link>http://brian.dobberteen.com/code/calling-a-pagemethod-with-jquery/comment-page-1/#comment-23</link>
		<dc:creator>Sangam Uprety</dc:creator>
		<pubDate>Mon, 05 Oct 2009 05:27:37 +0000</pubDate>
		<guid isPermaLink="false">http://brian.dobberteen.com/?p=34#comment-23</guid>
		<description>Good article.</description>
		<content:encoded><![CDATA[<p>Good article.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Calling a PageMethod with jQuery by Lee</title>
		<link>http://brian.dobberteen.com/code/calling-a-pagemethod-with-jquery/comment-page-1/#comment-20</link>
		<dc:creator>Lee</dc:creator>
		<pubDate>Fri, 02 Oct 2009 20:56:42 +0000</pubDate>
		<guid isPermaLink="false">http://brian.dobberteen.com/?p=34#comment-20</guid>
		<description>&lt;blockquote cite=&quot;#comment-body-19&quot;&gt;
&lt;strong&gt;&lt;a href=&quot;#comment-19&quot; rel=&quot;nofollow&quot;&gt;HeartsHacker&lt;/a&gt; :&lt;/strong&gt;
&lt;BLOCKQUOTE cite=&quot;#comment-body-6&quot;&gt;
&lt;STRONG&gt;&lt;a href=&quot;#comment-6&quot; rel=&quot;nofollow&quot;&gt;Lee&lt;/A&gt; :&lt;/STRONG&gt;
For HTTP inspection, Fiddler is far richer than firebug, and it works in the world’s most popular Web browser (IE) as well as other browsers.&lt;a href=&quot;http://www.fiddler2.com/&quot; rel=&quot;nofollow&quot;&gt;http://www.fiddler2.com/&lt;/A&gt;&lt;A&gt;&lt;/A&gt;&lt;/BLOCKQUOTE&gt;
fiddler2 is good. But with firebug u can inspect css. It is very helpful.&lt;A&gt;&lt;/A&gt;&lt;/blockquote&gt;
With Fiddler, you can inspect *anything* that comes through an HTTP request or response, which certainly includes CSS.</description>
		<content:encoded><![CDATA[<blockquote cite="#comment-body-19"><p>
<strong><a href="#comment-19" rel="nofollow">HeartsHacker</a> :</strong></p>
<blockquote cite="#comment-body-6"><p>
<strong><a href="#comment-6" rel="nofollow">Lee</a> :</strong><br />
For HTTP inspection, Fiddler is far richer than firebug, and it works in the world’s most popular Web browser (IE) as well as other browsers.<a href="http://www.fiddler2.com/" rel="nofollow">http://www.fiddler2.com/</a><a></a></p></blockquote>
<p>fiddler2 is good. But with firebug u can inspect css. It is very helpful.<a></a></p></blockquote>
<p>With Fiddler, you can inspect *anything* that comes through an HTTP request or response, which certainly includes CSS.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Calling a PageMethod with jQuery by HeartsHacker</title>
		<link>http://brian.dobberteen.com/code/calling-a-pagemethod-with-jquery/comment-page-1/#comment-19</link>
		<dc:creator>HeartsHacker</dc:creator>
		<pubDate>Fri, 02 Oct 2009 09:30:20 +0000</pubDate>
		<guid isPermaLink="false">http://brian.dobberteen.com/?p=34#comment-19</guid>
		<description>&lt;blockquote cite=&quot;#comment-body-6&quot;&gt;
&lt;strong&gt;&lt;a href=&quot;#comment-6&quot; rel=&quot;nofollow&quot;&gt;Lee&lt;/a&gt; :&lt;/strong&gt;
                  
         
         
         For HTTP inspection, Fiddler is far richer than firebug, and it works in the world’s most popular Web browser (IE) as well as other browsers.
&lt;a href=&quot;http://www.fiddler2.com/&quot; rel=&quot;nofollow&quot;&gt;http://www.fiddler2.com/&lt;/a&gt;
         &lt;a&gt;&lt;/a&gt;
       &lt;/blockquote&gt;

fiddler2 is good. But with firebug u can inspect css. It is very helpful.</description>
		<content:encoded><![CDATA[<blockquote cite="#comment-body-6"><p>
<strong><a href="#comment-6" rel="nofollow">Lee</a> :</strong></p>
<p>         For HTTP inspection, Fiddler is far richer than firebug, and it works in the world’s most popular Web browser (IE) as well as other browsers.<br />
<a href="http://www.fiddler2.com/" rel="nofollow">http://www.fiddler2.com/</a><br />
         <a></a>
       </p></blockquote>
<p>fiddler2 is good. But with firebug u can inspect css. It is very helpful.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
