<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://www.dotnetzone.gr:443/cs/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>ASP.NET WebForms</title><link>https://www.dotnetzone.gr:443/cs/forums/13/ShowForum.aspx</link><description>Θέματα για web εφαρμογές, σε ASP.NET WebForms</description><dc:language>el</dc:language><generator>CommunityServer 2.1 SP3 (Build: 20423.1)</generator><item><title>Re: Ajax.NET - Το εχετε αντιληφθεί αυτό;</title><link>https://www.dotnetzone.gr:443/cs/forums/thread/3055.aspx</link><pubDate>Fri, 24 Jun 2005 03:22:34 GMT</pubDate><guid isPermaLink="false">2622095e-976c-431a-859e-16783ec7ecd7:3055</guid><dc:creator>George J. Capnias</dc:creator><slash:comments>0</slash:comments><comments>https://www.dotnetzone.gr:443/cs/forums/thread/3055.aspx</comments><wfw:commentRss>https://www.dotnetzone.gr:443/cs/forums/commentrss.aspx?SectionID=13&amp;PostID=3055</wfw:commentRss><description>&lt;p&gt;&lt;font face="Georgia"&gt;&lt;font face="Georgia" size="2"&gt;Κάνοντας blogging, έπεσα πάνω στο παρακάτω post, που προσωπικά το βρήσκω απόλυτα σωστό, και παρουσιάζει το πρόβλημα του remote scripting:&lt;/font&gt;&lt;br /&gt;&lt;br /&gt; &lt;table style="BORDER-RIGHT: 2px ridge; BORDER-TOP: 2px ridge; BORDER-LEFT: 2px ridge; BORDER-BOTTOM: 2px ridge" bordercolor="#cccccc" cellspacing="0" cellpadding="0" width="90%" align="center" border="1"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt; &lt;table cellspacing="0" cellpadding="5" width="100%" bgcolor="#eeeeee" border="0"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td style="BORDER-RIGHT: #003399 1px solid; PADDING-RIGHT: 1px; BORDER-TOP: #003399 1px solid; PADDING-LEFT: 1px; FONT-SIZE: 8pt; PADDING-BOTTOM: 1px; BORDER-LEFT: #003399 1px solid; COLOR: #ffffff; PADDING-TOP: 1px; BORDER-BOTTOM: #003399 1px solid; FONT-FAMILY: Marlett; BACKGROUND-COLOR: #003399" align="middle" width="25"&gt;1&lt;/td&gt; &lt;td style="BORDER-RIGHT: #003399 1px solid; PADDING-RIGHT: 2px; BORDER-TOP: #003399 1px solid; PADDING-LEFT: 2px; FONT-WEIGHT: bold; FONT-SIZE: 10pt; PADDING-BOTTOM: 2px; BORDER-LEFT: #003399 1px solid; COLOR: #ffffff; PADDING-TOP: 2px; BORDER-BOTTOM: #003399 1px solid; FONT-FAMILY: Tahoma; BACKGROUND-COLOR: #003399" width="100%"&gt;Why AJAX is dangerous... My Daily WTH (What the heck?!!?)&lt;/td&gt; &lt;td style="BORDER-RIGHT: #003399 2px solid; PADDING-RIGHT: 1px; BORDER-TOP: #003399 2px solid; PADDING-LEFT: 1px; FONT-WEIGHT: bold; FONT-SIZE: 10pt; PADDING-BOTTOM: 1px; BORDER-LEFT: #003399 2px solid; COLOR: #ffffff; PADDING-TOP: 1px; BORDER-BOTTOM: #003399 2px solid; FONT-FAMILY: Marlett; BACKGROUND-COLOR: #ff0000" width="25"&gt;r&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt; &lt;td style="BORDER-RIGHT: 2px groove; BORDER-TOP: 2px groove; FONT-SIZE: 10pt; BORDER-LEFT: 2px groove; BORDER-BOTTOM: 2px groove; FONT-FAMILY: Tahoma; BACKGROUND-COLOR: #ffffff" colspan="3"&gt; &lt;p&gt;I made an interesting discovery at work today.&amp;nbsp; I finally had to work on a piece of code that I have always found ways to hand off to someone else.&amp;nbsp; It was written by a former colleague who absolutely loved JavaScript and Remote Scripting (aka AJAX... don't argue with me they are the same thing more or less).&amp;nbsp; Every programmer who has ever had to do something with this code has hated it (except the originator).&amp;nbsp; BTW, this is ASP code.&lt;/p&gt; &lt;p&gt;So before I continue on, I would like to ask everyone a question.&amp;nbsp; How many lines of Javascript is too many in a page?&amp;nbsp; When do you start thinking about moving that functionality out of the page and back on the server?&amp;nbsp; In other words, when is it OK, to go ahead and post back to&amp;nbsp;the server.&amp;nbsp; How many lines?&lt;/p&gt; &lt;p&gt;Ok, pencils down... what do you have?&amp;nbsp; A couple hundred?&amp;nbsp; One thousand?&amp;nbsp; Fifteen hundred?&amp;nbsp; So&amp;nbsp;you would say that 5000+ lines&amp;nbsp;of JavaScript is too many (I hope so).... the entire application is written in JavaScript with&amp;nbsp;remote calls to retieve data.&amp;nbsp; BTW, data is returned from these routines as delimitted strings (with one delimitter for a record and a different delimitter&amp;nbsp;for each field in the record).&amp;nbsp; This data is then pulled apart using that high-tech JavaScript method split... Can you say&amp;nbsp;sssssslllllooooooowwwwwwww?&amp;nbsp;&amp;nbsp;&amp;nbsp; It also creates new HTMLelements on the fly which is also not the fastest method of doing things.&lt;/p&gt; &lt;p&gt;Oh yeah, and where was this code?&amp;nbsp; Not in a separate&amp;nbsp;file incuded via a script tags src attribute... No... this code is dropped into the top of the ASP page, so that the&amp;nbsp;ASP&amp;nbsp;&amp;lt;%=%&amp;gt; could customize the page and keep the page from&amp;nbsp;being cached by the browser...&amp;nbsp; BTW,&amp;nbsp;when I removed the non-customized JavaScript and put the 5000+ lines into a separate file the resulting .JS file was&amp;nbsp;266kb!&lt;/p&gt; &lt;p&gt;Am I allowed to rewrite?&amp;nbsp; Of course not!&amp;nbsp; &amp;lt;sigh /&amp;gt;&lt;/p&gt; &lt;p&gt;Those of you who love AJAX, please be responsible when you are evangelizing the technology and remind people that doing everything with JavaScript/AJAX may not result in a speedier solution.&amp;nbsp; It may result in something less maintainable and/or less speedy...&lt;/p&gt;&lt;img height="1" src="http://codebetter.com/aggbug.aspx?PostID=64955" width="1" /&gt; &lt;p&gt;&lt;a target="_blank" title="http://codebetter.com/blogs/jay.kimble/archive/2005/06/21/64955.aspx" href="http://codebetter.com/blogs/jay.kimble/archive/2005/06/21/64955.aspx"&gt;&lt;u&gt;&lt;font color="#0002ca"&gt;Original Link&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;&lt;/p&gt; &lt;div class="newsitemfooter"&gt;Yesterday 06:03 | jkimble&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;font face="Georgia" size="2"&gt;George J.&lt;br /&gt;&lt;/font&gt;&lt;br /&gt;&lt;/font&gt;&lt;/p&gt;</description></item><item><title>Re: Ajax.NET - Το εχετε αντιληφθεί αυτό;</title><link>https://www.dotnetzone.gr:443/cs/forums/thread/3019.aspx</link><pubDate>Thu, 23 Jun 2005 06:21:06 GMT</pubDate><guid isPermaLink="false">2622095e-976c-431a-859e-16783ec7ecd7:3019</guid><dc:creator>Χρήστος Γεωργακόπουλος</dc:creator><slash:comments>0</slash:comments><comments>https://www.dotnetzone.gr:443/cs/forums/thread/3019.aspx</comments><wfw:commentRss>https://www.dotnetzone.gr:443/cs/forums/commentrss.aspx?SectionID=13&amp;PostID=3019</wfw:commentRss><description>&lt;p&gt;Νομίζω ότι το πλουσιότερο παράδειγμα με τέτοια κόλπα είναι το gmail. Πραγματικά εκπληκτικά πράγματα. Το θέμα είναι ότι όλοι ξέρουν ότι μπορούσαν να γίνουν, αρκετοί ξέρουν και πως να τα υλοποιήσουν, but... Μάλλον τα θεωρούμε extra μπελά για τις κλασσικές εφαρμογές... Και επειδή οι πραγματικά εφαρμόσιμες καταστάσεις (που να αξίζει πραγματικά τον κόπο)&amp;nbsp;είναι προς το παρόν λίγες... αυτά τα πράγματα σχεδόν μένουν στο ντουλάπι.&lt;br /&gt;&lt;br /&gt;By the way, το gmail εκτός από τα callbacks φαίνεται ότι παίζει με πολύ προσεγμένο τρόπο και με το cache του browser. Ξέρει κανείς περισσότερα;&lt;/p&gt;</description></item><item><title>Re: Ajax.NET - Το εχετε αντιληφθεί αυτό;</title><link>https://www.dotnetzone.gr:443/cs/forums/thread/3017.aspx</link><pubDate>Thu, 23 Jun 2005 05:33:46 GMT</pubDate><guid isPermaLink="false">2622095e-976c-431a-859e-16783ec7ecd7:3017</guid><dc:creator>George J. Capnias</dc:creator><slash:comments>0</slash:comments><comments>https://www.dotnetzone.gr:443/cs/forums/thread/3017.aspx</comments><wfw:commentRss>https://www.dotnetzone.gr:443/cs/forums/commentrss.aspx?SectionID=13&amp;PostID=3017</wfw:commentRss><description>&lt;font face="Georgia" size="2"&gt;Παρόλα αυτά που πιστύω εγώ το AJAX.NET φαίνεται ότι έχει βρει ένα δικό του δρόμο που το έχει κάνει δημοφιλές...&lt;/font&gt;&lt;br /&gt;&lt;br /&gt; &lt;table style="BORDER-RIGHT: 2px ridge; BORDER-TOP: 2px ridge; BORDER-LEFT: 2px ridge; BORDER-BOTTOM: 2px ridge" bordercolor="#cccccc" cellspacing="0" cellpadding="0" width="90%" align="center" border="1"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt; &lt;table cellspacing="0" cellpadding="5" width="100%" bgcolor="#eeeeee" border="0"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td style="BORDER-RIGHT: #003399 1px solid; PADDING-RIGHT: 1px; BORDER-TOP: #003399 1px solid; PADDING-LEFT: 1px; FONT-SIZE: 8pt; PADDING-BOTTOM: 1px; BORDER-LEFT: #003399 1px solid; COLOR: #ffffff; PADDING-TOP: 1px; BORDER-BOTTOM: #003399 1px solid; FONT-FAMILY: Marlett; BACKGROUND-COLOR: #003399" align="middle" width="25"&gt;1&lt;/td&gt; &lt;td style="BORDER-RIGHT: #003399 1px solid; PADDING-RIGHT: 2px; BORDER-TOP: #003399 1px solid; PADDING-LEFT: 2px; FONT-WEIGHT: bold; FONT-SIZE: 10pt; PADDING-BOTTOM: 2px; BORDER-LEFT: #003399 1px solid; COLOR: #ffffff; PADDING-TOP: 2px; BORDER-BOTTOM: #003399 1px solid; FONT-FAMILY: Tahoma; BACKGROUND-COLOR: #003399" width="100%"&gt;Ajax.NET is an open source project, now!!&lt;/td&gt; &lt;td style="BORDER-RIGHT: #003399 2px solid; PADDING-RIGHT: 1px; BORDER-TOP: #003399 2px solid; PADDING-LEFT: 1px; FONT-WEIGHT: bold; FONT-SIZE: 10pt; PADDING-BOTTOM: 1px; BORDER-LEFT: #003399 2px solid; COLOR: #ffffff; PADDING-TOP: 1px; BORDER-BOTTOM: #003399 2px solid; FONT-FAMILY: Marlett; BACKGROUND-COLOR: #ff0000" width="25"&gt;r&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt; &lt;td style="BORDER-RIGHT: 2px groove; BORDER-TOP: 2px groove; FONT-SIZE: 10pt; BORDER-LEFT: 2px groove; BORDER-BOTTOM: 2px groove; FONT-FAMILY: Tahoma; BACKGROUND-COLOR: #ffffff" colspan="3"&gt; &lt;p&gt;&lt;font size="2"&gt;First of all I want to thank you for your help to improve the free Ajax.NET library by sending feedback and ideas. I am happy to give the .NET developers an easy and fast way to implement AJAX methods in their projects.&lt;/font&gt;&lt;/p&gt; &lt;p&gt;&lt;font size="2"&gt;I had a lot of requests about the license, the commercial use of this free library,... and, of course, a lot of requests for the source code of this library.&lt;/font&gt;&lt;/p&gt; &lt;p&gt;&lt;a target="_blank" title="http://lab.msdn.microsoft.com/productfeedback/viewfeedback.aspx?feedbackid=9c2b3819-4ab0-4435-8ece-f25118056278" href="http://lab.msdn.microsoft.com/productfeedback/viewfeedback.aspx?feedbackid=9c2b3819-4ab0-4435-8ece-f25118056278"&gt;&lt;font color="#0002ca" size="2"&gt;&lt;u&gt;Microsoft is thinking of AJAX support&lt;/u&gt;&lt;/font&gt;&lt;/a&gt;&lt;font size="2"&gt; in an add-on or in future releases of the ASP.NET Framework.&lt;/font&gt;&lt;/p&gt; &lt;p&gt;&lt;font size="2"&gt;Because we (the .NET developers) cannot wait until this date I have opened the source code of the Ajax.NET library. I will post the open source project details this evening (German time).&lt;/font&gt;&lt;/p&gt; &lt;p&gt;&lt;font size="2"&gt;&lt;strong&gt;&lt;font color="#ff0000"&gt;Update&lt;/font&gt;&lt;/strong&gt;: The project will be hosted at &lt;a target="_blank" title="http://www.sourceforge.net/" href="http://www.sourceforge.net/"&gt;&lt;u&gt;&lt;font color="#0002ca"&gt;http://www.sourceforge.net&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;. The project is still under review by the source forge team (sorry for the delay!!). The UNIX name I am using is &lt;em&gt;&lt;strong&gt;ajaxnet-library&lt;/strong&gt;&lt;/em&gt;, so I think the URL will be &lt;a target="_blank" title="http://sourceforge.net/projects/ajaxnet-library" href="http://sourceforge.net/projects/ajaxnet-library"&gt;&lt;u&gt;&lt;font color="#0002ca"&gt;http://sourceforge.net/projects/ajaxnet-library&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;. Note: there is an existing project called &lt;em&gt;ajaxnet&lt;/em&gt; which is not the same!&lt;/font&gt;&lt;/p&gt; &lt;p&gt;&lt;font size="2"&gt;&lt;strong&gt;&lt;font color="#ff0000"&gt;Update&lt;/font&gt;&lt;/strong&gt;: Now, the project is running at sourceforge.net. I am uploading files and then... you will be able to see the source code.&lt;/font&gt;&lt;/p&gt;&lt;img height="1" src="http://weblogs.asp.net/mschwarz/aggbug/414161.aspx" width="1" /&gt; &lt;p&gt;&lt;a target="_blank" title="http://weblogs.asp.net/mschwarz/archive/2005/06/21/414161.aspx" href="http://weblogs.asp.net/mschwarz/archive/2005/06/21/414161.aspx"&gt;&lt;u&gt;&lt;font color="#0002ca"&gt;Original Link&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;&lt;/p&gt; &lt;div class="newsitemfooter"&gt;Yesterday 18:34 | Michael Schwarz&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;font face="Georgia" size="2"&gt;George J.&lt;br /&gt;&lt;/font&gt;</description></item><item><title>Re: Ajax.NET - Το εχετε αντιληφθεί αυτό;</title><link>https://www.dotnetzone.gr:443/cs/forums/thread/2586.aspx</link><pubDate>Thu, 09 Jun 2005 06:58:59 GMT</pubDate><guid isPermaLink="false">2622095e-976c-431a-859e-16783ec7ecd7:2586</guid><dc:creator>George J. Capnias</dc:creator><slash:comments>0</slash:comments><comments>https://www.dotnetzone.gr:443/cs/forums/thread/2586.aspx</comments><wfw:commentRss>https://www.dotnetzone.gr:443/cs/forums/commentrss.aspx?SectionID=13&amp;PostID=2586</wfw:commentRss><description>&lt;p align="justify"&gt;&lt;BLOCKQUOTE&gt;&lt;table width="85%"&gt;&lt;tr&gt;&lt;td class="txt4"&gt;&lt;img src="/forums/Themes/default/images/icon-quote.gif"&gt;&amp;nbsp;&lt;strong&gt;cap wrote:&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="quoteTable"&gt;&lt;table width="100%"&gt;&lt;tr&gt;&lt;td width="100%" valign="top" class="txt4"&gt;&lt;a title="http" href="http://ajax.schwarz-interactive.de/csharpsample/default.aspx" target="_blank"&gt;http://ajax.schwarz-interactive.de/csharpsample/default.aspx&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;To έχετε δει αυτό; Εχετε παίξει με αυτό; Γιατί η Microsoft δεν κάνει τιποτα πιό επίσημα για αυτό; Γιατί γιατί γιατί;;;&lt;br /&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/BLOCKQUOTE&gt;&lt;br /&gt;&lt;br /&gt;&lt;font face="Georgia" size="2"&gt;Προσωπικά το θεωρώ μια μεγάλη "φούσκα". Όταν το ίδιο περιγράφεται σαν "AJAX leverages a number of existing technologies, which aren't particularly new, however fondness for what these technologies have to offer (collectively, they are AJAX) has recently soared". &lt;br /&gt;&lt;br /&gt;Δηλαδή ήρθε να μας σώσει, μπας και ξεχάσουμε την Javascript, το DHTML και το DOM; Δεν νομίζω!&lt;br /&gt;&lt;br /&gt;Καινούργια τεχνολογία δεν είναι, συνεπώς αυτό το κάνει ένα καλό practice, ειδικά για ανθρώπους που δεν έχουν ασχοληθεί ποτέ με client side programming στον browser.&lt;br /&gt;&lt;br /&gt;Η Microsoft έχει παρόμοια τεχνολογία στο ASP v2.0, ClientCallBack, οπότε γιατί να αγχωθεί; Το AJAX έχει εμπευστεί από αυτό...&lt;br /&gt;&lt;br /&gt;George J.&lt;br /&gt;&lt;/p&gt;&lt;/font&gt;</description></item><item><title>Ajax.NET - Το εχετε αντιληφθεί αυτό;</title><link>https://www.dotnetzone.gr:443/cs/forums/thread/2581.aspx</link><pubDate>Wed, 08 Jun 2005 23:13:16 GMT</pubDate><guid isPermaLink="false">2622095e-976c-431a-859e-16783ec7ecd7:2581</guid><dc:creator>cap</dc:creator><slash:comments>0</slash:comments><comments>https://www.dotnetzone.gr:443/cs/forums/thread/2581.aspx</comments><wfw:commentRss>https://www.dotnetzone.gr:443/cs/forums/commentrss.aspx?SectionID=13&amp;PostID=2581</wfw:commentRss><description>&lt;a target="_blank" title="http://ajax.schwarz-interactive.de/csharpsample/default.aspx" href="http://ajax.schwarz-interactive.de/csharpsample/default.aspx"&gt;http://ajax.schwarz-interactive.de/csharpsample/default.aspx&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;To έχετε δει αυτό; Εχετε παίξει με αυτό; Γιατί η Microsoft δεν κάνει τιποτα πιό επίσημα για αυτό; Γιατί γιατί γιατί;;;&lt;br /&gt;&lt;br /&gt; &lt;p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"&gt;&lt;span lang="EN"&gt;&lt;font size="2"&gt;Asynchronous JavaScript and XML (AJAX) has recently become the craze thanks, in no small part, to Google’s usage of it in &lt;/font&gt;&lt;a target="_blank" title="http://www.google.com/webhp?complete=1&amp;amp;hl=en" href="http://www.google.com/webhp?complete=1&amp;amp;hl=en"&gt;&lt;u&gt;&lt;font color="#ff6600" size="2"&gt;Google Suggest&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;&lt;font size="2"&gt; as well as &lt;/font&gt;&lt;a target="_blank" title="http://maps.google.com/" href="http://maps.google.com/"&gt;&lt;u&gt;&lt;font color="#ff6600" size="2"&gt;Google Maps&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;&lt;font size="2"&gt;.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;In ASP.Net terms, &lt;/font&gt;&lt;/span&gt;&lt;font size="2"&gt;&lt;?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" /&gt;&lt;st1:City&gt;&lt;st1:place&gt;&lt;span lang="EN"&gt;AJAX&lt;/span&gt;&lt;/st1:place&gt;&lt;/st1:City&gt;&lt;span lang="EN"&gt; allows server-side processing to occur without requiring postback, thus enabling clients (browsers) with rich server-side capabilities.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;In other words it provides a framework for asynchronously dispatching and processing requests and responses from the server. &lt;/span&gt;&lt;st1:City&gt;&lt;st1:place&gt;&lt;span lang="EN"&gt;AJAX&lt;/span&gt;&lt;/st1:place&gt;&lt;/st1:City&gt;&lt;span lang="EN"&gt; leverages a number of existing technologies, which aren't particularly new, however fondness for what these technologies have to offer (collectively, they are &lt;/span&gt;&lt;st1:City&gt;&lt;st1:place&gt;&lt;span lang="EN"&gt;AJAX&lt;/span&gt;&lt;/st1:place&gt;&lt;/st1:City&gt;&lt;span lang="EN"&gt;) has recently soared.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"&gt;&lt;span lang="EN"&gt;&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;font size="2"&gt;&amp;nbsp;&lt;/font&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"&gt;&lt;span lang="EN"&gt;&lt;font size="2"&gt;Enter &lt;/font&gt;&lt;a target="_blank" title="http://weblogs.asp.net/mschwarz/" href="http://weblogs.asp.net/mschwarz/"&gt;&lt;u&gt;&lt;font color="#800080" size="2"&gt;Michael Schwarz&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;&lt;font size="2"&gt;'s &lt;/font&gt;&lt;/span&gt;&lt;font size="2"&gt;&lt;st1:City&gt;&lt;st1:place&gt;&lt;span lang="EN"&gt;AJAX&lt;/span&gt;&lt;/st1:place&gt;&lt;/st1:City&gt;&lt;span lang="EN"&gt; .Net wrapper which allows ASP.Net developers to quickly and easily deploy pages capable of easily capitalizing on &lt;/span&gt;&lt;st1:City&gt;&lt;st1:place&gt;&lt;span lang="EN"&gt;AJAX&lt;/span&gt;&lt;/st1:place&gt;&lt;/st1:City&gt;&lt;span lang="EN"&gt;.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;Users should be cautioned that the wrapper is early in development, and as such isn't fully matured.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;</description></item></channel></rss>