Sitenizden Feedburner abonelik penceresini açın
Kullanıcının eposta adresi ile kullanıcıya Feedburner a kayıt olma imkanı sağlayabilirsiniz.
Kullanıcıları RSS beslemenize abone etmek için
http://feedburner.google.com/fb/a/mailverify?uri=<BESLEME_ADRESİ>&email=<EPOSTA_ADRESİ>
adresine yönlendirmelisiniz.
Ama kullanıcının adresini önceden biliyorsanız yönlendirmeyi sağlayabilirsiniz ama kullanıcının eposta adresini bilmiyorsanız şöyle bir yöntem kullanabilirsiniz:
<asp:Panel ID="pnlRSSAbone" runat="server" DefaultButton="btnRSSKaydet">
E-posta adresiniz:
<br />
<asp:TextBox ID="txtRSSAboneEposta" runat="server" />
<br />
<asp:Button ID="btnRSSKaydet" runat="server" Text="RSSe Abone Ol" OnClick="btnRSSKaydet_Click" />
</asp:Panel>
Kod tarafında ise;
protected void btnRSSKaydet_Click(object sender, EventArgs e)
{
string beslemeAdresi = "daltinkurt";
string eposta = txtRSSAboneEposta.Text;
ScriptManager.RegisterStartupScript(this, this.GetType(), "rssabone",
string.Format(@"
window.open('http://feedburner.google.com/fb/a/mailverify?uri={0}&email={1}');", beslemeAdresi, eposta),
true);
}
Örnek olarak sol taraftaki RSS'e abone ol butonuna tıklayınız.

#rss #feedburner #abone