<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://weblogs.asp.net/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 AJAX Forum Posts</title><link>http://weblogs.asp.net/atlas-forums/default.aspx</link><description /><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>dispalaying alert box while using with update panel</title><link>http://forums.asp.net/thread/3670636.aspx</link><pubDate>Wed, 10 Feb 2010 05:40:39 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7341732</guid><dc:creator>ASP.NET AJAX Discussion and Suggestions</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/atlas-forums/rsscomments.aspx?PostID=7341732</wfw:commentRss><comments>http://forums.asp.net/thread/3670636.aspx#comments</comments><description>Hi, I have used Response.Write(&amp;quot;&amp;lt;script language=&amp;#39;javascript&amp;#39;&amp;gt;alert(&amp;#39;Enter correct Email and Password&amp;#39;);&amp;lt;/script&amp;gt;&amp;quot;); } code in code behind for displaying an alert box.But this code is not work when i have added an update panel.I have also tried usin registerclientscript.but same .How can i display an alert box when using an update panel? Read More......(&lt;a href="http://forums.asp.net/thread/3670636.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7341732" width="1" height="1"&gt;</description></item><item><title>Getting Microsoft JScript runtime error</title><link>http://forums.asp.net/thread/3670566.aspx</link><pubDate>Wed, 10 Feb 2010 05:01:35 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7341733</guid><dc:creator>ASP.NET AJAX Discussion and Suggestions</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/atlas-forums/rsscomments.aspx?PostID=7341733</wfw:commentRss><comments>http://forums.asp.net/thread/3670566.aspx#comments</comments><description>I used the following function in my ASP.Net Project (which contains ajax controls ) Protected Sub btnExport_Click(ByVal sender As Object, ByVal e As EventArgs) Handles btnExport.Click &amp;#39;ExportToExcel() Response.Clear() Response.AddHeader(&amp;quot;content-disposition&amp;quot;, &amp;quot;attachment;filename=FileName.xls&amp;quot;) Response.Charset = &amp;quot;&amp;quot; &amp;#39; If you want the option to open the Excel file without saving then &amp;#39; comment out the line below Response.Cache.SetCacheability(HttpCacheability.NoCache) Response.ContentType = &amp;quot;application/vnd.xls&amp;quot; Dim stringWrite As New System.IO.StringWriter() Dim htmlWrite As System.Web.UI.HtmlTextWriter = New HtmlTextWriter(stringWrite) gvDisplay.RenderControl(htmlWrite) Response.Write(stringWrite...(&lt;a href="http://forums.asp.net/thread/3670566.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7341733" width="1" height="1"&gt;</description></item><item><title>Failed to create designer Systems.web.ui.scriptmanager version 1.0.61025</title><link>http://forums.asp.net/thread/3670002.aspx</link><pubDate>Tue, 09 Feb 2010 21:39:46 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7341359</guid><dc:creator>ASP.NET AJAX Discussion and Suggestions</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/atlas-forums/rsscomments.aspx?PostID=7341359</wfw:commentRss><comments>http://forums.asp.net/thread/3670002.aspx#comments</comments><description>Hi, I migrated a project from vs 2005 to vs 2008, in the vs 2008 project we will continue to use framework 2.0 only so i didnt migrated to 3.5 When I open a page in 2008 I got this problem in the scriptmanager, can you please help me to solve it? I found this on the web.config &amp;lt;add assembly=&amp;quot;System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35&amp;quot;/&amp;gt; Read More......(&lt;a href="http://forums.asp.net/thread/3670002.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7341359" width="1" height="1"&gt;</description></item><item><title>ScriptManager.RegisterStartupScript, window.open</title><link>http://forums.asp.net/thread/3669896.aspx</link><pubDate>Tue, 09 Feb 2010 20:19:50 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7341151</guid><dc:creator>ASP.NET AJAX Discussion and Suggestions</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/atlas-forums/rsscomments.aspx?PostID=7341151</wfw:commentRss><comments>http://forums.asp.net/thread/3669896.aspx#comments</comments><description>In my login page, after login, open default.aspx page with ScriptManager.RegisterStartupScript(this.Page, this.GetType(), &amp;quot;_opener&amp;quot;, &amp;quot;window.open(&amp;#39;Default.aspx&amp;#39;);&amp;quot;, true); but in default.aspx. on button click event ScriptManager.RegisterStartupScript(this.Page, this.GetType(), &amp;quot;_opener&amp;quot;, &amp;quot;window.open(&amp;#39;Default2.aspx&amp;#39;);&amp;quot;, true); not running. How to run window.open from my file which is opened with ScriptManager.RegisterStartupScript(this.Page, this.GetType(), &amp;quot;_opener&amp;quot;, &amp;quot;window.open(&amp;#39;Default.aspx&amp;#39;);&amp;quot;, true); Thank you, Read More......(&lt;a href="http://forums.asp.net/thread/3669896.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7341151" width="1" height="1"&gt;</description></item><item><title>aps.net - web app - c# - jquery - Call A method inside code behind using jquery Problem witht static</title><link>http://forums.asp.net/thread/3669612.aspx</link><pubDate>Tue, 09 Feb 2010 17:59:39 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7341152</guid><dc:creator>ASP.NET AJAX Networking and Web Services</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/atlas-forums/rsscomments.aspx?PostID=7341152</wfw:commentRss><comments>http://forums.asp.net/thread/3669612.aspx#comments</comments><description>hi my dear friends My Pages on vs 2008 are Base on Master And Content Pages And In Content Pages I have multiviews And inside Multiviews I have RadComboBoxes. two of my radcomboboxes are parent and child like country and city dropdowns... therefore in codebehind i put some codes in the OnSelectedIndexChange event of Parent RadComboBox for filling it&amp;#39;s child - I used a hidden field for country id and sql datasources(stored Procedures)... meantime parent and child combo boxes are in an update panel for doing this job i set the autopostback property of parent combobox to true... but i do not want that autopostback=ture because of some focus problems that i coded with jquery so i want convert OnSelectedIndexChange event in codebehind to a method...(&lt;a href="http://forums.asp.net/thread/3669612.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7341152" width="1" height="1"&gt;</description></item><item><title>Can't select anything from auto suggest with modal popup</title><link>http://forums.asp.net/thread/3669462.aspx</link><pubDate>Tue, 09 Feb 2010 16:40:28 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7340929</guid><dc:creator>ASP.NET AJAX Discussion and Suggestions</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/atlas-forums/rsscomments.aspx?PostID=7340929</wfw:commentRss><comments>http://forums.asp.net/thread/3669462.aspx#comments</comments><description>The modal popup works fine, but whenever I add the background-color to #000, I&amp;#39;m not able to select anything from the autosuggest textbox. Any ideas? I&amp;#39;ve tried changing the z-index&amp;#39;s but no luck so far. &amp;lt; asp : Button ID =&amp;quot;btnCreateNewMailbox&amp;quot; runat =&amp;quot;server&amp;quot; Text =&amp;quot;Create New&amp;quot; /&amp;gt; &amp;lt; cc1 : ModalPopupExtender ID =&amp;quot;mpebtnCreate_ModalPopupExtender&amp;quot; BackgroundCssClass =&amp;quot;modalBackground&amp;quot; runat =&amp;quot;server&amp;quot; TargetControlID =&amp;quot;btnCreateNewMailbox&amp;quot; PopupControlID =&amp;quot;TestPanel1&amp;quot; PopupDragHandleControlID =&amp;quot;TestPanel1&amp;quot;&amp;gt; &amp;lt;/ cc1 : ModalPopupExtender &amp;gt; &amp;lt; asp : Panel ID =&amp;quot;TestPanel1&amp;quot; runat =&amp;quot;server&amp;quot; Width =&amp;quot;400px&amp;quot;&amp;gt;...(&lt;a href="http://forums.asp.net/thread/3669462.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7340929" width="1" height="1"&gt;</description></item><item><title>How to dynamically add ScriptManager to a WebUserControl</title><link>http://forums.asp.net/thread/3669182.aspx</link><pubDate>Tue, 09 Feb 2010 14:12:15 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7340886</guid><dc:creator>ASP.NET AJAX UI</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/atlas-forums/rsscomments.aspx?PostID=7340886</wfw:commentRss><comments>http://forums.asp.net/thread/3669182.aspx#comments</comments><description>Hello I had this problem: I created a WebUserControl that used som Ajax stuff - hence it needed a ScriptManager. The problem was that I couldn&amp;#39;t add it to the WebUserControls html code (the .ascx file) since the WebUserControl sometimes was placed into a parent page that already had a ScriptManager, and I couldn&amp;#39;t add a ScriptManagerProxy since the parent page sometimes didn&amp;#39;t had a ScriptManager. Alot of people suggested to just use a ScriptManager on the MasterPage, but this fails if: one doesn&amp;#39;t use a MasterPage or one uses iFrames etc. that uses stand alone aspx pages, like Thickbox might do... Here&amp;#39;s the solution: in the WebUserControls code behind (.cs file), put this: protected override void OnInit(EventArgs e) { if...(&lt;a href="http://forums.asp.net/thread/3669182.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7340886" width="1" height="1"&gt;</description></item><item><title>Tabcontainer set_enabled issue</title><link>http://forums.asp.net/thread/3668083.aspx</link><pubDate>Tue, 09 Feb 2010 04:08:30 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7339841</guid><dc:creator>ASP.NET AJAX UI</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/atlas-forums/rsscomments.aspx?PostID=7339841</wfw:commentRss><comments>http://forums.asp.net/thread/3668083.aspx#comments</comments><description>I have a tabcontainer with a bunch of tabs... When I disable a tab and then re-enable it using set_enabled all the fields on the tabs remain disabled. I can&amp;#39;t find a solution anywhere. Any thoughts on what I&amp;#39;m doing wrong? Seems pretty boilerplate code to me... In case it helps here&amp;#39;s the js code I&amp;#39;m using to do the work. function DisableEnableTab(boolVal, tabIndex) { var tab = $find(&amp;#39;TabContainer1&amp;#39;); tab.get_tabs()[tabIndex].set_enabled(boolVal); } Thanks in advance, Chris Edit: The last post in this thread sums it up: http://forums.asp.net/p/1121737/1983604.aspx#1983604 Read More......(&lt;a href="http://forums.asp.net/thread/3668083.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7339841" width="1" height="1"&gt;</description></item><item><title>Failed to load View state poblem while calling the panel in ajax popup</title><link>http://forums.asp.net/thread/3667805.aspx</link><pubDate>Mon, 08 Feb 2010 23:24:33 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7339638</guid><dc:creator>ASP.NET AJAX Discussion and Suggestions</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/atlas-forums/rsscomments.aspx?PostID=7339638</wfw:commentRss><comments>http://forums.asp.net/thread/3667805.aspx#comments</comments><description>Hi, I am placing dynamically created web user control in a panel and calling them using ajax popup extender control. It is loading properly and when I to post from the popup, it give view state error. &amp;quot;Failed to load viewstate. The control tree into which viewstate is being loaded must match the control tree that was used to save viewstate during the previous request. &amp;quot; I tried disabling viewstate to false for all the controls and I am getting the same error. Please advise, Thanking you all in anticipation. KSR Read More......(&lt;a href="http://forums.asp.net/thread/3667805.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7339638" width="1" height="1"&gt;</description></item><item><title>Async download of images using ASP.NET AJAX web service - is it possible ?</title><link>http://forums.asp.net/thread/3667698.aspx</link><pubDate>Mon, 08 Feb 2010 21:50:32 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7339514</guid><dc:creator>ASP.NET AJAX Discussion and Suggestions</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/atlas-forums/rsscomments.aspx?PostID=7339514</wfw:commentRss><comments>http://forums.asp.net/thread/3667698.aspx#comments</comments><description>I&amp;#39;m new to ASP.NET AJAX, and am confused about downloading images from an ASP.NET AJAX (JSON) web service to a Javascript client... I understand how to read a binary image file and return it as a byte array via an HTTPhandler, and how to assign the returned array to the src property of an &amp;lt;img&amp;gt; tag. That works fine. But I&amp;#39;ve read that an ASP.NET AJAX (JSON) web service can&amp;#39;t be used. And all the examples I&amp;#39;ve found show to use an HTTPhandler. I don&amp;#39;t understand why. If an HTTPhandler can return a byte array (and assign it to a property of an HTML tag), then why can&amp;#39;t a web service? DT Read More......(&lt;a href="http://forums.asp.net/thread/3667698.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7339514" width="1" height="1"&gt;</description></item><item><title>All Controls Firing An Event on First Page Postback</title><link>http://forums.asp.net/thread/3667660.aspx</link><pubDate>Mon, 08 Feb 2010 21:32:03 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7339515</guid><dc:creator>ASP.NET AJAX UI</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/atlas-forums/rsscomments.aspx?PostID=7339515</wfw:commentRss><comments>http://forums.asp.net/thread/3667660.aspx#comments</comments><description>Hi, I have a web application that shows a page containing between 6 and 20 UpdatePanels, contained with Custom Web (.ascx) Controls. You can see an example of such a page here: http://www.elnexus.com/products.aspx?line_id=15514 The problem I&amp;#39;m getting is that when the user FIRST clicks any of the radio-buttons on any of the controls in the page, ALL the radio buttons that have an active selection ALSO fire an rb_CheckChanged event (see application log below). On subsequent radio-button clicks, only that RB fires the event (as expected). This behaviour is having a dramatic impact on performance. The page loads quickly, and a &amp;quot;normal&amp;quot; RB click provides an AJAX update correctly within 1 second. The problematic first RB click, however...(&lt;a href="http://forums.asp.net/thread/3667660.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7339515" width="1" height="1"&gt;</description></item><item><title>Thread was being aborted - Update panel triggered by timer</title><link>http://forums.asp.net/thread/3667555.aspx</link><pubDate>Mon, 08 Feb 2010 20:18:02 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7339432</guid><dc:creator>ASP.NET AJAX Discussion and Suggestions</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/atlas-forums/rsscomments.aspx?PostID=7339432</wfw:commentRss><comments>http://forums.asp.net/thread/3667555.aspx#comments</comments><description>Hi, I have an ASPX page with several update panels. They all have their UpdateMode=&amp;quot;Conditional&amp;quot;. Some panels are refreshed when the user clicks a button and other are refreshed regularly, with a timer. The panel refreshed with a timer launches a database query and many validations on the data. Then display the result in a panel when errors have been found. That all works fine except when the validation has to delete files on the disk. (.txt, .jpg, etc it depends). In that case, after the validation is made, I am always kicked out of my website because of the error (Thread was being aborted). So I loose all my session variables which means I am not logged off. Anybody had that kind of problem ? Is it normal that deleting files AND...(&lt;a href="http://forums.asp.net/thread/3667555.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7339432" width="1" height="1"&gt;</description></item><item><title>AJAX Application: full business application example</title><link>http://forums.asp.net/thread/3667160.aspx</link><pubDate>Mon, 08 Feb 2010 16:23:47 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7339257</guid><dc:creator>ASP.NET AJAX Discussion and Suggestions</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/atlas-forums/rsscomments.aspx?PostID=7339257</wfw:commentRss><comments>http://forums.asp.net/thread/3667160.aspx#comments</comments><description>Hi there, I&amp;#39;d like to know if there exists any sample application or starter kit of a asp.net 3.5 ajax based application with all its layers: presentation, business, data acces, etc. Thanks, JB Read More......(&lt;a href="http://forums.asp.net/thread/3667160.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7339257" width="1" height="1"&gt;</description></item><item><title>web page not submitted when checking PostBack </title><link>http://forums.asp.net/thread/3667159.aspx</link><pubDate>Mon, 08 Feb 2010 16:23:05 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7339189</guid><dc:creator>ASP.NET AJAX Discussion and Suggestions</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/atlas-forums/rsscomments.aspx?PostID=7339189</wfw:commentRss><comments>http://forums.asp.net/thread/3667159.aspx#comments</comments><description>Hi, in aspx file i have two simple controls ................. &amp;lt;div&amp;gt; &amp;lt;asp:ScriptManager ID=&amp;quot;sm1&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt; &amp;lt;/asp:ScriptManager&amp;gt; &amp;lt;asp:UpdatePanel ID=&amp;quot;up&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt; &amp;lt;ContentTemplate&amp;gt; &amp;lt;asp:Label ID=&amp;quot;l1&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;label1&amp;quot;&amp;gt;&amp;lt;/asp:Label&amp;gt; &amp;lt;br /&amp;gt; &amp;lt;br /&amp;gt; &amp;lt;asp:Button ID=&amp;quot;b1&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;click this button to see change in the label&amp;quot; OnClick=&amp;quot;onclick1&amp;quot; /&amp;gt; &amp;lt;/ContentTemplate&amp;gt; &amp;lt;/asp:UpdatePanel&amp;gt; &amp;lt;/div&amp;gt; ..... Then in Code behind file i wrote this ...... protected void Page_Load(object sender, EventArgs e) { if (Page.IsPostBack) { Response.Write...(&lt;a href="http://forums.asp.net/thread/3667159.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7339189" width="1" height="1"&gt;</description></item><item><title>Following database changes on client side</title><link>http://forums.asp.net/thread/3666849.aspx</link><pubDate>Mon, 08 Feb 2010 13:32:28 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7338972</guid><dc:creator>ASP.NET AJAX Discussion and Suggestions</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/atlas-forums/rsscomments.aspx?PostID=7338972</wfw:commentRss><comments>http://forums.asp.net/thread/3666849.aspx#comments</comments><description>Hello all. I&amp;#39;m building a web application for auction, I want to create such a mechanism,that can follow if there is a new row in some table in my database,if new row is added,it makes my aspx page to refreshed itself. For instance, I am in the midle of an auction and somebody has just given new offer for product, the page is being refreshed(postback),so now I can see my grid with all previous offers including the new offer,that has just been accepted. How can I create such thing? I was thinking about update panel and XMLHTTPRequest,but I don&amp;#39;t know how to buid something that could follow database changes constantly. Does anybody have an idia?? Regards, Read More......(&lt;a href="http://forums.asp.net/thread/3666849.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7338972" width="1" height="1"&gt;</description></item></channel></rss>