<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.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>Tips &amp; Tricks</title><link>http://forums.asp.net/53.aspx</link><description>Cool code and exciting examples, provided by our members.</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Re: Ajax does not work for Firefor, Solution Here</title><link>http://forums.asp.net/thread/3261932.aspx</link><pubDate>Sat, 27 Jun 2009 17:39:30 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3261932</guid><dc:creator>mudassarkhan</dc:creator><author>mudassarkhan</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3261932.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=53&amp;PostID=3261932</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;Yes it does work and I have created an Grid with sorting and paging using ajax&lt;/p&gt;
&lt;p&gt;and here&amp;#39;s it&lt;/p&gt;
&lt;p&gt;&lt;a href="http://aspalliance.com/1798_Building_a_Custom_ASPNET_Ajax_Enabled_Grid_Using_JavaScript.all"&gt;http://aspalliance.com/1798_Building_a_Custom_ASPNET_Ajax_Enabled_Grid_Using_JavaScript.all&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Also here&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.aspsnippets.com/post/2009/02/07/Custom-Ajax-Enabled-Grid-using-JavaScript-xmlhttp-in-ASPNet.aspx"&gt;http://www.aspsnippets.com/post/2009/02/07/Custom-Ajax-Enabled-Grid-using-JavaScript-xmlhttp-in-ASPNet.aspx&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Ajax does not work for Firefor, Solution Here</title><link>http://forums.asp.net/thread/3261895.aspx</link><pubDate>Sat, 27 Jun 2009 16:08:25 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3261895</guid><dc:creator>BinodSuman</dc:creator><author>BinodSuman</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3261895.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=53&amp;PostID=3261895</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;Generally simple ajax code doesnot work for Firefox and lot of questions are floating over internet. But here is the solution.&lt;/p&gt;&lt;pre class="xhtml" name="code"&gt;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
var request; function getName(){
var roll = document.getElementById(&amp;quot;roll&amp;quot;).value;
var url = &amp;quot;http://localhost:8080/blog_demo/StudentInfo?roll=&amp;quot;+roll;

if(window.ActiveXObject){
request = new ActiveXObject(&amp;quot;Microsoft.XMLHTTP&amp;quot;);
}
else if(window.XMLHttpRequest){
request = new XMLHttpRequest();
}

request.onreadystatechange = showResult;
request.open(&amp;quot;POST&amp;quot;,url,true);
request.send(null);
}
function showResult(){
if(request.readyState == 4){
if ( request.status == 200 ) {
var response = request.responseXML;
var students = response.getElementsByTagName(&amp;quot;Student&amp;quot;);
var student = students[0];

document.getElementById(&amp;quot;NamelH1&amp;quot;).innerHTML = student.getElementsByTagName(&amp;quot;Name&amp;quot;)[0].childNodes[0].data;
document.getElementById(&amp;quot;HostelH1&amp;quot;).innerHTML = student.getElementsByTagName(&amp;quot;Hostel&amp;quot;)[0].childNodes[0].data;
document.getElementById(&amp;quot;ContactH1&amp;quot;).innerHTML = student.getElementsByTagName(&amp;quot;Contact&amp;quot;)[0].childNodes[0].data;


}
}
}
&amp;lt;/script&amp;gt;
&lt;/pre&gt;
&lt;p&gt;&lt;br /&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://binodsuman.blogspot.com/2009/06/ajax-program-for-firefox-ajax-does-not.html"&gt;http://binodsuman.blogspot.com/2009/06/ajax-program-for-firefox-ajax-does-not.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Binod Suman&lt;/p&gt;
&lt;p&gt;&lt;a href="http://binodsuman.blogspot.com"&gt;http://binodsuman.blogspot.com&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item></channel></rss>