Hi.. I am new to RSS feeds kindly help for solving my problem.. I created a RSS feed to a page in web site. for example to my homepage home.asp, i created RSS feed. I edited the Home.asp page, this edited content is not displaying in the RSS (XML) feed page. Is there any possibility that the content in the homepage (home.asp) directly reflect on the xml page(RSS page)? Its too urgent to me.. kindly provide u r valuable suggestions to me. Regards hlp4al
You need to set correct content type so web browser and RSS readers would detect your asp page as xml feed. Add this line as first in your asp file: Response.ContentType = "text/xml" Regards