Click here to Skip to main content
15,867,453 members
Please Sign up or sign in to vote.
4.50/5 (2 votes)
hello dev's..

I am facing a problem because of Google Chrome's new functionality in their latest release. Follow this link for more info [^] about the same.

I found a likely solution in here.[^]

C#
/*this is what i used to do*/
/*works fine in everything except Chrome > version 21*/
//Response.ContentType = "text/xml"; 

/*this is what i tried*/
Response.ContentType = "application/atom+xml"; // this i was hoping to work 
//Response.ContentType = "application/rdf+xml";
//Response.ContentType = "application/rss+xml";
rfeed2.Write(Response.OutputStream);
Response.Flush();
Response.Close();


I need to be able to see my feed right-away like it used to.. (in XML form). I don't know why Chrome has got issues with RSS. Any help would be appreciable. :)

Mind you i am using Rss.Net.dll[^]
Posted
Comments
Karthik. A 30-Aug-12 11:45am    
Ah, exactly the same issue I was wondering about, as to why google messed this up (rss)!!!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900