Çoğu sitelerde RSS sayfaları görmekteyiz. RSS, XML ismiyle de bilinmektedir. RSS genellikle haber ve download siteleri gibi sürekli güncellenen sitelerde kullanılmaktadır. RSS ile sitemizde ki içeriğin, ziyaretçilerimiz tarafından yardımcı bir program kullanılarak sitemize girmesine gerek kalmadan okuyabilmelerini sağlayabiliriz. RSS sayfalarını okutmak için SharpReader adlı programı kullanabilirsiniz. Bununla birlikte, başka bir sitede yer alan RSS sayfasından ASP ile veri alıp sitemiz içerisinde yayınlayabiliriz.Kendi sitemde kullandığım RSS sayfasının kodlarını sizlerle paylaşmak istiyorum.<%Set baglanti = Server.CreateObject("ADODB.Connection")baglanti.Open "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("database/db.mdb")Response.Buffer = TrueResponse.ContentType = "text/xml"Function Temizle(strInput) strInput = Replace(strInput,"&", "&") strInput = Replace(strInput,"'", "'") strInput = Replace(strInput,"""", """) strInput = Replace(strInput,">", ">") strInput = Replace(strInput,"<","<") strInput = Replace(strInput,"İ","I") strInput = Replace(strInput,"Ş","S") strInput = Replace(strInput,"Ü","U") strInput = Replace(strInput,"Ö","O") strInput = Replace(strInput,"Ç","C") strInput = Replace(strInput,"Ğ","G") strInput = Replace(strInput,"ğ","g") strInput = Replace(strInput,"ı","i") strInput = Replace(strInput,"ş","s") strInput = Replace(strInput,"ü","u") strInput = Replace(strInput,"ö","o") strInput = Replace(strInput,"ç","c") Temizle = strInputEnd Function%>