<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/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>An XMLHTTPRequest tip</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx</link><description>Over on the Ajax Blog, Dion Almaer passed on an important tip from Brent Ashley and Tim Aiello for AJAX developers – to have your cross-browser AJAX work better with IE7, you really should be invoking the native XMLHttpRequest (the cross-browser one)</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>re: An XMLHTTPRequest tip</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#623054</link><pubDate>Fri, 09 Jun 2006 02:36:26 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:623054</guid><dc:creator>Dean Edwards</dc:creator><description>You would gain a lot more credibility if you used &amp;quot;true&amp;quot; instead of &amp;quot;TRUE&amp;quot;.</description></item><item><title>re: An XMLHTTPRequest tip</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#623066</link><pubDate>Fri, 09 Jun 2006 02:44:26 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:623066</guid><dc:creator>ieblog</dc:creator><description>Well, that's what I get for copying and pasting someone else's example. &amp;nbsp;Corrected.&lt;br&gt;-Chris</description></item><item><title>re: An XMLHTTPRequest tip</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#623079</link><pubDate>Fri, 09 Jun 2006 02:54:07 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:623079</guid><dc:creator>Matthew Ratzloff</dc:creator><description>if (!window.XMLHttpRequest) {&lt;br&gt; &amp;nbsp; &amp;nbsp;window.XMLHttpRequest = function() {&lt;br&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return new ActiveXObject(&amp;quot;Microsoft.XMLHTTP&amp;quot;);&lt;br&gt; &amp;nbsp; &amp;nbsp;};&lt;br&gt;}</description></item><item><title>re: An XMLHTTPRequest tip</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#623097</link><pubDate>Fri, 09 Jun 2006 03:13:38 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:623097</guid><dc:creator>Dao</dc:creator><description>That's good, Matthew. Exactly what I do. :)&lt;br&gt;And now let's pimp it with conditional compilation since no other browser than IE provides ActiveXObject:&lt;br&gt;&lt;br&gt;/*@cc_on @if (@_win32 &amp;amp;&amp;amp; @_jscript_version &amp;gt;= 5) if (!window.XMLHttpRequest)&lt;br&gt;function XMLHttpRequest() { return new ActiveXObject('Microsoft.XMLHTTP') }&lt;br&gt;@end @*/&lt;br&gt;&lt;br&gt;( &lt;a rel="nofollow" target="_new" href="http://en.design-noir.de/webdev/JS/XMLHttpRequest-IE/"&gt;http://en.design-noir.de/webdev/JS/XMLHttpRequest-IE/&lt;/a&gt; )</description></item><item><title>re: An XMLHTTPRequest tip</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#623252</link><pubDate>Fri, 09 Jun 2006 06:19:23 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:623252</guid><dc:creator>Mister Lucky</dc:creator><description>your foo() and bar() are a bit misleading, they should really be function pointers, not return values of functions.&lt;br&gt;&lt;br&gt;unless the functions themselves return functions :)&lt;br&gt;but may become a closure memory leak for IE if such!! ;)</description></item><item><title>re: An XMLHTTPRequest tip</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#623491</link><pubDate>Fri, 09 Jun 2006 09:36:46 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:623491</guid><dc:creator>Julian Reschke</dc:creator><description>Hm.&lt;br&gt;&lt;br&gt;I would agree with the proposal, if IE7's XMLHttpRequest would have the same functionality as the MSXML's version of it (see &lt;a rel="nofollow" target="_new" href="https://connect.microsoft.com/feedback/ViewFeedback.aspx?SiteID=136&amp;amp;FeedbackID=83800"&gt;https://connect.microsoft.com/feedback/ViewFeedback.aspx?SiteID=136&amp;amp;FeedbackID=83800&lt;/a&gt;).&lt;br&gt;&lt;br&gt;Best regards, Julian</description></item><item><title>re: An XMLHTTPRequest tip</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#623504</link><pubDate>Fri, 09 Jun 2006 09:50:10 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:623504</guid><dc:creator>Dao</dc:creator><description>Mister Lucky is right, of course. It should be o.onreadystatechange = foo;&lt;br&gt;&lt;br&gt;By the way, as the request is most likely asynchronous, isn't overwriting onreadystatechange after calling send() a little bit dangerous?</description></item><item><title>re: An XMLHTTPRequest tip</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#623562</link><pubDate>Fri, 09 Jun 2006 11:18:42 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:623562</guid><dc:creator>santosj</dc:creator><description>Damn, I was wondering why everyone was trying to call the ActiveX version when IE 7 was going to have the XMLHttpRequest object.&lt;br&gt;&lt;br&gt;For once, I was able to predict the outcome. But I suppose it is bittersweet since I totally suck at JavaScript.</description></item><item><title>re: An XMLHTTPRequest tip</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#623583</link><pubDate>Fri, 09 Jun 2006 11:57:49 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:623583</guid><dc:creator>lahmatiy</dc:creator><description>another one&lt;br&gt;&lt;br&gt;getTransport = function(){&lt;br&gt; &amp;nbsp;var __transport = new Array(&lt;br&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;function(){ return XMLHttpRequest ? new XMLHttpRequest() : null },&lt;br&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;function(){ return ActiveXObject &amp;nbsp;? new ActiveXObject('Msxml2.XMLHTTP') : null },&lt;br&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;function(){ return ActiveXObject &amp;nbsp;? new ActiveXObject('Microsoft.XMLHTTP') : null }&lt;br&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ); &amp;nbsp; &lt;br&gt;&lt;br&gt; &amp;nbsp;for (var i = 0; i &amp;lt; __transport.length; i++)&lt;br&gt; &amp;nbsp; &amp;nbsp;try {&lt;br&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (__transport[i]())&lt;br&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return __transport[i];&lt;br&gt; &amp;nbsp; &amp;nbsp;} catch(e) {}&lt;br&gt;&lt;br&gt; &amp;nbsp;return function(){ return null };&lt;br&gt;&lt;br&gt;}();</description></item><item><title>re: An XMLHTTPRequest tip</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#623600</link><pubDate>Fri, 09 Jun 2006 12:33:11 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:623600</guid><dc:creator>EricLaw [MSFT]</dc:creator><description>@Dao: Without seeing foo and bar it's of course impossible to say, but yeah, unless these functions themselves return functions, they should be referenced without parentheses.&lt;br&gt;&lt;br&gt;The request is asynchronous (the third parameter is true), so what happens in the &amp;quot;...&amp;quot; is pretty critical to how this code behaves. &amp;nbsp;&lt;br&gt;&lt;br&gt;As noted above: &amp;quot;Xmlhttp.open has a “reset” semantic so the second open() call on the same object will abort the previous connection, disconnect previous event handler, and reset the object.&amp;quot;&lt;br&gt;&lt;br&gt;If you were to run the code above and sniff the HTTP traffic, you'd see that the first HTTP request usually doesn't even make it out to the wire. &amp;nbsp;&lt;br&gt;&lt;br&gt;The spec for XMLHTTP requires that an asynchronous send return &amp;quot;immediately&amp;quot; which means that it can't even block until the request bytes are on the wire.</description></item><item><title>re: An XMLHTTPRequest tip</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#623602</link><pubDate>Fri, 09 Jun 2006 12:38:13 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:623602</guid><dc:creator>bullsh_it</dc:creator><description>To people who complain about this:&lt;br&gt;For security's sake, please, no more activex. You knew IE 7 will not allow activex run by default, your gadget won't run properly because of that, your gadget won't be able to run in other browsers.&lt;br&gt;&lt;br&gt;</description></item><item><title>re: An XMLHTTPRequest tip</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#623639</link><pubDate>Fri, 09 Jun 2006 13:25:01 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:623639</guid><dc:creator>Dao</dc:creator><description>lahmatiy, I don't see the benefit. Looks bloated to me ;)</description></item><item><title>re: An XMLHTTPRequest tip</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#623696</link><pubDate>Fri, 09 Jun 2006 14:56:17 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:623696</guid><dc:creator>Attila Szabo</dc:creator><description>&amp;quot;I’ve seen a bunch of code that creates the XMLHttpRequest object, uses it for a request, and then throws it away.&amp;quot;&lt;br&gt;&lt;br&gt;I read the following in &amp;quot;The JavaScript Anthology&amp;quot; book by Sitepoint: &lt;br&gt;&amp;quot;Even though the XMLHttpRequest object allows you to call the open method multiple times, each object can be used effectively only for one call, as the readystatechange event does not occur again once readyState changes to 4 (in Mozilla).&amp;quot;.&lt;br&gt;&lt;br&gt;Of course in case of MS IE you really should not recreate the object again. A wrapper function or method should take care of this and many more differences between browsers.&lt;br&gt;</description></item><item><title>re: An XMLHTTPRequest tip</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#623754</link><pubDate>Fri, 09 Jun 2006 16:10:02 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:623754</guid><dc:creator>cooperpx</dc:creator><description>@ Dao&lt;br&gt;&lt;br&gt;lahmatiy's implementation is pretty cool. It constructs a function that does not continually check the browser capabilities and will create the preferred version of the xml request object. &lt;br&gt;&lt;br&gt;It's also centralized, so all your code will get 'fixed' or updated should a new transport platform get made (such as a flex-bridge transport). Theoretically, lahmatiy could also implement a xmlhttprequest look-alike object that uses frames.</description></item><item><title>re: An XMLHTTPRequest tip</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#623781</link><pubDate>Fri, 09 Jun 2006 16:48:50 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:623781</guid><dc:creator>Steve</dc:creator><description>Ok, can we at least get the sample fixed?&lt;br&gt;&lt;br&gt;var o = new XMLHttpRequest();&lt;br&gt;o.open('GET', 'data1.xml', &amp;nbsp;true);&lt;br&gt;o.onreadystatechange = foo;&lt;br&gt;o.send();&lt;br&gt;…….&lt;br&gt;o.open('GET', 'data2.xml', &amp;nbsp;true);&lt;br&gt;o.onreadystatechange = bar;&lt;br&gt;o.send();&lt;br&gt;&lt;br&gt;/*&lt;br&gt; &amp;nbsp;added ; to first line,&lt;br&gt; &amp;nbsp;changed foo and bar to references, not calls&lt;br&gt; &amp;nbsp;(glad to see the TRUE now set to true, as&lt;br&gt; &amp;nbsp;mentioned, using TRUE looks extremely&lt;br&gt; &amp;nbsp;amatuer)&lt;br&gt;*/&lt;br&gt;&lt;br&gt;One side note. &amp;nbsp;In IE7 (for reasons I simply can not fathom, there is an option, (tools &amp;gt; options) to [_] Disable native XMLHttpRequest.&lt;br&gt;&lt;br&gt;HUH?!, so, you decide to play catch up, and support this natively, and then add an option to kill it?&lt;br&gt;&lt;br&gt;If this is some backwards way of implementing security that isn't required, I just don't get it. &amp;nbsp;Will there be a checkbox to disable HTTP 1.1?&lt;br&gt;&lt;br&gt;Steve&lt;br&gt;</description></item><item><title>re: An XMLHTTPRequest tip</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#623827</link><pubDate>Fri, 09 Jun 2006 17:24:13 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:623827</guid><dc:creator>Robin</dc:creator><description>&amp;quot;Will there be a checkbox to disable HTTP 1.1?&amp;quot;&lt;br&gt;&lt;br&gt;As in Tools / Internet Options / Advanced / HTTP 1.1 Settings / Use HTTP 1.1? :)</description></item><item><title>re: An XMLHTTPRequest tip</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#623863</link><pubDate>Fri, 09 Jun 2006 17:58:30 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:623863</guid><dc:creator>Mister Lucky</dc:creator><description>&amp;quot; Xmlhttp.open has a “reset” semantic so the second open() call on the same object will abort the previous connection, disconnect previous event handler, and reset the object. &amp;quot;&lt;br&gt;&lt;br&gt;Would this mean that an abort() would be called during the new open() call??&lt;br&gt;&lt;br&gt;seems the abort(), might allow for a quick tidy-up of the pre-existing request, if it is still outstanding??&lt;br&gt;&lt;br&gt;or, a &amp;quot;best practices&amp;quot; is to call abort() manually when readyState &amp;amp;&amp;amp; &amp;lt; 4?? then proceed to reuse the request by calling a fresh open()? </description></item><item><title>re: An XMLHTTPRequest tip</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#623959</link><pubDate>Fri, 09 Jun 2006 19:16:36 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:623959</guid><dc:creator>Dao</dc:creator><description>&amp;gt; lahmatiy's implementation is pretty cool. It constructs a function that does not continually check the browser capabilities and will create the preferred&lt;br&gt;&amp;gt; version of the xml request object.&lt;br&gt;&lt;br&gt;As do Matthew Ratzloff's and mine implementations. They are just smaller, faster and easier to use.</description></item><item><title>re: An XMLHTTPRequest tip</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#624018</link><pubDate>Fri, 09 Jun 2006 19:38:07 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:624018</guid><dc:creator>nomad513</dc:creator><description>lahmatiy's implementation looks like a copy/paste job from the prototype.js library, combining the Ajax.getTransport function with the Try.these function.</description></item><item><title>re: An XMLHTTPRequest tip</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#624139</link><pubDate>Fri, 09 Jun 2006 21:22:54 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:624139</guid><dc:creator>ieblog</dc:creator><description>@Steve -&lt;br&gt;Yes, we provided a user option to disable this. &amp;nbsp;If the user/admin does not want the old XMLHTTPRequest, they can disable it (by disabling ActiveX). &amp;nbsp;We wanted to make sure they still had the ability to disable the native version if they so chose. -Chris</description></item><item><title>re: An XMLHTTPRequest tip</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#625378</link><pubDate>Sat, 10 Jun 2006 19:06:06 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:625378</guid><dc:creator>M. David Peterson</dc:creator><description>And now that we have client-side support for XSLT in EVERY major browser (IE,Mozilla,Safari,Opera(in 9.0)) we can avoid ALL of this &amp;quot;if&amp;quot; guess work and slim down our apps to focus on access the code base that is specific to their individual ways of handling the various tasks we ask of it:&lt;br&gt;&lt;br&gt;&lt;a rel="nofollow" target="_new" href="http://www.xsltblog.com/archives/2005/12/finally_someone_1.html"&gt;http://www.xsltblog.com/archives/2005/12/finally_someone_1.html&lt;/a&gt;</description></item><item><title>re: An XMLHTTPRequest tip</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#625585</link><pubDate>Sat, 10 Jun 2006 21:00:30 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:625585</guid><dc:creator>M. David Peterson</dc:creator><description>By the way... for those who would rather avoid the 20 page jibber-jabber post, and simply see a quick demo of what I am refering to that works in IE, Safari, and Mozilla, visit &lt;a rel="nofollow" target="_new" href="http://browserbasedxml.com"&gt;http://browserbasedxml.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;If you view source you will find access to the XML and a link to the XSLT file and pretty much be enabled to figured out the rest from there.&lt;br&gt;&lt;br&gt;In regards to Opera 9.0, the latest weekly build release is still returning:&lt;br&gt;&lt;br&gt;XSLT - &lt;a rel="nofollow" target="_new" href="http://browserbasedxml.com"&gt;http://browserbasedxml.com&lt;/a&gt;/SessionConfig.xsl&lt;br&gt;attribute at line 13, column 40&lt;br&gt;Error: invalid expression: document(my:UserAgentInvalidDoc)&lt;br&gt;Call to undefined function: document&lt;br&gt;&lt;br&gt;They've stated they plan support for XSLT/XPath 1.0 in the final release, and given that the document function is very much a part of XSLT/XPath 1.0 I can only assume this will be fixed by the time they release.&lt;br&gt;&lt;br&gt;None-the-less... time will tell.</description></item><item><title>re: An XMLHTTPRequest tip</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#627965</link><pubDate>Mon, 12 Jun 2006 13:24:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:627965</guid><dc:creator>lahmatiy</dc:creator><description>@ nomad513&lt;br&gt;Yes, you are right, implementation looks like some functions from the prototype.js library. But this library don't optimized and:&lt;br&gt;1. do selection of transport constructor every time while create Ajax.Request object&lt;br&gt;2. instead of native XMLHttpRequest it's use ActiveX&lt;br&gt;Anyway, you couldn't write something really new :) I'm just want to show implemetation looks more pretty than using conditional comments.</description></item><item><title>re: An XMLHTTPRequest tip</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#628113</link><pubDate>Mon, 12 Jun 2006 16:24:41 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:628113</guid><dc:creator>Steve</dc:creator><description>@Robin:&lt;br&gt;uhm, yeah, what I was going for, was:&lt;br&gt;&amp;lt;sarcasm_factor&amp;gt;&lt;br&gt;Where's the option to disable HTTP? I mean if you are going to blog native XMLHttpRequests, why can't you disable HTTP Request/Responses? &amp;nbsp;The whole idea behind blocking the native XMLHttpRequest is obsurd.&lt;br&gt;&amp;lt;/sarcasm_factor&amp;gt;&lt;br&gt;&lt;br&gt;@ieblog:&lt;br&gt;Thanks Chris, yeah, I realize (and appreciate) that the ActiveX version can be disabled... this makes total sense. &amp;nbsp;However disabling Native XMLHttpRequest, appears to only do one of thing:&lt;br&gt;&lt;br&gt;a.) Indicates that MS feels there may be a security hole in its implementation, and therefore wants to add an option to disable it, should there be a zero-day exploit that warrents informing end users.&lt;br&gt;&lt;br&gt;Please tell me, that the Native implementation isn't just some sort of &amp;quot;secure&amp;quot; wrapper on the ActiveX version!... what gives?&lt;br&gt;&lt;br&gt; &lt;br&gt;&lt;br&gt;&lt;br&gt;</description></item><item><title>re: An XMLHTTPRequest tip</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#628429</link><pubDate>Mon, 12 Jun 2006 20:37:50 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:628429</guid><dc:creator>EricLaw [MSFT]</dc:creator><description>In general, almost all new IE features have an option to control whether or not the feature is enabled. &amp;nbsp;&lt;br&gt;&lt;br&gt;Say a company decides that they don't want XMLHTTP available on their network for some reason (and rest assured, companies want all sorts of &amp;quot;interesting&amp;quot; things). &amp;nbsp;&lt;br&gt;&lt;br&gt;Now, in the old days, you could simply disable the object or disable ActiveX. Since we've added a native implementation, some company is going to ask for a way to disable that too. &amp;nbsp;So we've added one. &amp;nbsp;&lt;br&gt;&lt;br&gt;We don't expect that any normal user is likely to uncheck this, and in fact, very few users will even see the option at all. &amp;nbsp;&lt;br&gt;&lt;br&gt;(And to be clear, there's nothing wrong with the ActiveX version of XMLHTTP; the window-Native version has been added for simplicity in developing AJAX sites).</description></item><item><title>XMLHTTPRequest with VML crashes IE6</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#628695</link><pubDate>Tue, 13 Jun 2006 00:44:33 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:628695</guid><dc:creator>samlakshmi</dc:creator><description>I think this may be a little out of place but I think its worth informing:&lt;br&gt;&lt;br&gt;IE6 crashes when vml is fetched using XMLHTTP and shown using objDiv.innerHTML = objXMLHTTP.reponseText.&lt;br&gt;&lt;br&gt;The event log says:&lt;br&gt;Faulting application IEXPLORE.EXE, version 6.0.3790.1830, faulting module vgx.dll, version 6.0.3790.1830, fault address 0x000ab694.&lt;br&gt;&lt;br&gt;I know that MS has released a fix to this issue for WinXP SP2 systems (KB Article ID: 885932). &lt;br&gt;But I would just like to point out that this occurs often on Windows Server 2003 + SP1 too.&lt;br&gt;&lt;br&gt;Any ideas when can we get a patch for this?</description></item><item><title>re: An XMLHTTPRequest tip</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#630952</link><pubDate>Wed, 14 Jun 2006 18:05:54 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:630952</guid><dc:creator>Erik Arvidsson</dc:creator><description>What about DOMParser, XMLSerializer, document.implementation.createDocument etc? Without those we will continue to rely on ActiveX being turned on to achieve the same things.&lt;br&gt;&lt;br&gt;As far as I know Dave Massey promised that these would be added as well. However, it seems that marketing and not real world need has been driving IE7 features when it comes to the APIs.</description></item><item><title>re: An XMLHTTPRequest tip</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#631283</link><pubDate>Wed, 14 Jun 2006 22:35:24 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:631283</guid><dc:creator>Dao</dc:creator><description>&amp;gt; I'm just want to show implemetation looks more pretty than using conditional comments.&lt;br&gt;&lt;br&gt;You can leave out the conditional compilation thing if you don't like it (see Matthew Ratzloff's code.)&lt;br&gt;&lt;br&gt;Three lines of code making `new XMLHttpRequest;` functional in IE 5.5 and 6. How's what you've posted prettier?</description></item><item><title>re: An XMLHTTPRequest tip</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#635718</link><pubDate>Sun, 18 Jun 2006 04:55:15 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:635718</guid><dc:creator>EricLaw [MSFT]</dc:creator><description>@Erik-- Dave made no such promise for IE7. &amp;nbsp;He did promise that we'd add them to our list for consideration in a future release.&lt;br&gt;&lt;br&gt;I'm not sure where you got the notion that marketing had anything to do with this.</description></item><item><title>Interesting Finds: June 26, 2005 AM edition</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#647393</link><pubDate>Mon, 26 Jun 2006 17:19:45 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:647393</guid><dc:creator>Jason Haley</dc:creator><description /></item><item><title>Are WordPress Themes and Plugins Ready for Internet Explorer 7? &amp;laquo; Lorelle on WordPress</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#830637</link><pubDate>Mon, 16 Oct 2006 10:45:15 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:830637</guid><dc:creator>Are WordPress Themes and Plugins Ready for Internet Explorer 7? « Lorelle on WordPress</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://lorelle.wordpress.com/2006/10/16/are-wordpress-themes-and-plugins-ready-for-internet-explorer-7/"&gt;http://lorelle.wordpress.com/2006/10/16/are-wordpress-themes-and-plugins-ready-for-internet-explorer-7/&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Attila Szab??  &amp;raquo; Blog Archive   &amp;raquo; Cross-browser XMLHttpRequest object instantiation</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#888414</link><pubDate>Sat, 28 Oct 2006 13:17:35 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:888414</guid><dc:creator>Attila Szab??  » Blog Archive   » Cross-browser XMLHttpRequest object instantiation</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://w3net.sytes.net/blog/?p=5"&gt;http://w3net.sytes.net/blog/?p=5&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>15 minutes media &amp;raquo; The Release of IE7 and what it means for website owners</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#1097410</link><pubDate>Sat, 18 Nov 2006 03:54:15 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1097410</guid><dc:creator>15 minutes media » The Release of IE7 and what it means for website owners</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://blog.15minutesmedia.com/?p=13"&gt;http://blog.15minutesmedia.com/?p=13&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>为什么在vista上做开发？</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#1313903</link><pubDate>Mon, 18 Dec 2006 07:52:05 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1313903</guid><dc:creator>维生素C.NET</dc:creator><description>&lt;p&gt;这一年多来Vista有不少版本都在我机器上借宿过,从早期巨慢无比到beta1时我的显卡也能跑Aero了.现在RTMBusiness版也占据了我的硬盘的一部分。但是无论什么时候，总是感觉在Vista上...&lt;/p&gt;
</description></item><item><title>Manufacturer and supplier of a wide range ofManufacturer and supplier of a wide range ofNeed Tip | Here You Go</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#5217245</link><pubDate>Mon, 01 Oct 2007 04:34:46 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5217245</guid><dc:creator>Manufacturer and supplier of a wide range ofManufacturer and supplier of a wide range ofNeed Tip | Here You Go</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://blog.needtip.com/?p=13"&gt;http://blog.needtip.com/?p=13&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>&amp;#8230; Dion Almaer passed on an important tip&amp;#8230; Dion Almaer passed on an important tipNeed Tip | Here You Go</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#5217247</link><pubDate>Mon, 01 Oct 2007 04:34:55 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5217247</guid><dc:creator>… Dion Almaer passed on an important tip… Dion Almaer passed on an important tipNeed Tip | Here You Go</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://blog.needtip.com/?p=15"&gt;http://blog.needtip.com/?p=15&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Enterprise Software Solutions for PeopleSoft and JD EdwardsEnterprise Software Solutions for PeopleSoft and JD EdwardsNeed Tip | Here You Go</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#5217334</link><pubDate>Mon, 01 Oct 2007 04:54:11 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5217334</guid><dc:creator>Enterprise Software Solutions for PeopleSoft and JD EdwardsEnterprise Software Solutions for PeopleSoft and JD EdwardsNeed Tip | Here You Go</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://blog.needtip.com/?p=19"&gt;http://blog.needtip.com/?p=19&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>MacGyver Style DIY Tip VideoMacGyver Style DIY Tip VideoNeed Tip | Here You Go</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#5217409</link><pubDate>Mon, 01 Oct 2007 05:10:11 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5217409</guid><dc:creator>MacGyver Style DIY Tip VideoMacGyver Style DIY Tip VideoNeed Tip | Here You Go</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://blog.needtip.com/?p=28"&gt;http://blog.needtip.com/?p=28&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>The following DTC interfaces are to be usedThe following DTC interfaces are to be usedNeed Tip | Here You Go</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#5217507</link><pubDate>Mon, 01 Oct 2007 05:24:09 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5217507</guid><dc:creator>The following DTC interfaces are to be usedThe following DTC interfaces are to be usedNeed Tip | Here You Go</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://blog.needtip.com/?p=26"&gt;http://blog.needtip.com/?p=26&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Image Search</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#5405136</link><pubDate>Thu, 11 Oct 2007 22:49:43 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5405136</guid><dc:creator>Image Search</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://blog.needtip.com/?p=43"&gt;http://blog.needtip.com/?p=43&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Image Search</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#5405142</link><pubDate>Thu, 11 Oct 2007 22:49:46 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5405142</guid><dc:creator>Image Search</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://blog.needtip.com/?p=42"&gt;http://blog.needtip.com/?p=42&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Image Search</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#5405440</link><pubDate>Thu, 11 Oct 2007 22:51:34 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5405440</guid><dc:creator>Image Search</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://blog.needtip.com/?p=49"&gt;http://blog.needtip.com/?p=49&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Image Search</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#5405591</link><pubDate>Thu, 11 Oct 2007 22:52:20 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5405591</guid><dc:creator>Image Search</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://blog.needtip.com/?p=52"&gt;http://blog.needtip.com/?p=52&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Image Search</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#5405787</link><pubDate>Thu, 11 Oct 2007 22:55:49 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5405787</guid><dc:creator>Image Search</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://blog.needtip.com/?p=50"&gt;http://blog.needtip.com/?p=50&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Image Search</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#5405840</link><pubDate>Thu, 11 Oct 2007 22:59:37 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5405840</guid><dc:creator>Image Search</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://blog.needtip.com/?p=38"&gt;http://blog.needtip.com/?p=38&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Image Search</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#5406196</link><pubDate>Thu, 11 Oct 2007 23:35:49 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5406196</guid><dc:creator>Image Search</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://blog.needtip.com/?p=65"&gt;http://blog.needtip.com/?p=65&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Image Search</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#5455343</link><pubDate>Mon, 15 Oct 2007 03:07:42 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5455343</guid><dc:creator>Image Search</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://blog.needtip.com/?p=87"&gt;http://blog.needtip.com/?p=87&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Image Search</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#5455352</link><pubDate>Mon, 15 Oct 2007 03:08:06 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5455352</guid><dc:creator>Image Search</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://blog.needtip.com/?p=88"&gt;http://blog.needtip.com/?p=88&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Womens Discount Perfume &amp;raquo; Not perfumes   but still interesting&amp;#8230;</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#5786746</link><pubDate>Wed, 31 Oct 2007 00:52:45 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5786746</guid><dc:creator>Womens Discount Perfume » Not perfumes   but still interesting…</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://discount-perfume-hq.com/?p=1820"&gt;http://discount-perfume-hq.com/?p=1820&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Womens Discount Perfume &amp;raquo; Not dolce and gabbana perfume but still interesting&amp;#8230;</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#5798931</link><pubDate>Wed, 31 Oct 2007 17:07:18 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5798931</guid><dc:creator>Womens Discount Perfume » Not dolce and gabbana perfume but still interesting…</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://discount-perfume-hq.com/?p=2720"&gt;http://discount-perfume-hq.com/?p=2720&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Image Search</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#5803586</link><pubDate>Wed, 31 Oct 2007 23:02:06 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5803586</guid><dc:creator>Image Search</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://blog.needtip.com/tips/features-brief-summaries-of-major-theories-of-learning/"&gt;http://blog.needtip.com/tips/features-brief-summaries-of-major-theories-of-learning/&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Image Search</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#5803633</link><pubDate>Wed, 31 Oct 2007 23:05:40 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5803633</guid><dc:creator>Image Search</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://blog.needtip.com/tips/theinfopro-tip-is-an-independent-research-network-and-2/"&gt;http://blog.needtip.com/tips/theinfopro-tip-is-an-independent-research-network-and-2/&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Image Search</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#5803676</link><pubDate>Wed, 31 Oct 2007 23:07:41 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5803676</guid><dc:creator>Image Search</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://blog.needtip.com/tips/altavista-provides-the-most-comprehensive-search-experience-on/"&gt;http://blog.needtip.com/tips/altavista-provides-the-most-comprehensive-search-experience-on/&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Image Search</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#5803684</link><pubDate>Wed, 31 Oct 2007 23:07:52 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5803684</guid><dc:creator>Image Search</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://blog.needtip.com/tips/linux-tipnet-home-2/"&gt;http://blog.needtip.com/tips/linux-tipnet-home-2/&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Image Search</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#5803690</link><pubDate>Wed, 31 Oct 2007 23:08:07 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5803690</guid><dc:creator>Image Search</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://blog.needtip.com/tips/tip-get-an-etf-quote-for-ishares/"&gt;http://blog.needtip.com/tips/tip-get-an-etf-quote-for-ishares/&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Image Search</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#5803766</link><pubDate>Wed, 31 Oct 2007 23:12:22 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5803766</guid><dc:creator>Image Search</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://blog.needtip.com/tips/two-at-the-tip-chicagotribunecom/"&gt;http://blog.needtip.com/tips/two-at-the-tip-chicagotribunecom/&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Image Search</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#5803794</link><pubDate>Wed, 31 Oct 2007 23:15:19 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5803794</guid><dc:creator>Image Search</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://blog.needtip.com/tips/tip-community-page-where-all-media-tagged-tip-2/"&gt;http://blog.needtip.com/tips/tip-community-page-where-all-media-tagged-tip-2/&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Image Search</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#5995548</link><pubDate>Thu, 08 Nov 2007 23:43:30 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5995548</guid><dc:creator>Image Search</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://blog.needtip.com/tips/got-you-down-in-just-45-minutes-tip/"&gt;http://blog.needtip.com/tips/got-you-down-in-just-45-minutes-tip/&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Image Search</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#5995607</link><pubDate>Thu, 08 Nov 2007 23:46:18 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5995607</guid><dc:creator>Image Search</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://blog.needtip.com/tips/tip-ex-sports-betting-and-odds-comparison-service-for-gamblers/"&gt;http://blog.needtip.com/tips/tip-ex-sports-betting-and-odds-comparison-service-for-gamblers/&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Image Search</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#5995675</link><pubDate>Thu, 08 Nov 2007 23:49:30 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5995675</guid><dc:creator>Image Search</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://blog.needtip.com/tips/mac-tip-display-the-date-on-the-menubar/"&gt;http://blog.needtip.com/tips/mac-tip-display-the-date-on-the-menubar/&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> IEBlog An XMLHTTPRequest tip | Toe Nail Fungus</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#9713259</link><pubDate>Tue, 09 Jun 2009 09:09:25 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9713259</guid><dc:creator> IEBlog An XMLHTTPRequest tip | Toe Nail Fungus</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://toenailfungusite.info/story.php?id=1406"&gt;http://toenailfungusite.info/story.php?id=1406&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> IEBlog An XMLHTTPRequest tip | debt consolidator</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#9755499</link><pubDate>Mon, 15 Jun 2009 23:25:48 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9755499</guid><dc:creator> IEBlog An XMLHTTPRequest tip | debt consolidator</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://mydebtconsolidator.info/story.php?id=18708"&gt;http://mydebtconsolidator.info/story.php?id=18708&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> IEBlog An XMLHTTPRequest tip | internet marketing tools</title><link>http://blogs.msdn.com/ie/archive/2006/06/08/619507.aspx#9758857</link><pubDate>Tue, 16 Jun 2009 08:25:03 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9758857</guid><dc:creator> IEBlog An XMLHTTPRequest tip | internet marketing tools</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://einternetmarketingtools.info/story.php?id=21568"&gt;http://einternetmarketingtools.info/story.php?id=21568&lt;/a&gt;&lt;/p&gt;
</description></item></channel></rss>