Güncel altın fiyatlarını xml olarak sunan firma, tcmb den uğraşmak istemyenlere döviz kurlarınıda sunuyorlar.
Aşağıdaki gibi küçük bir kodla altın fiyatlarını sitenize ekliyorsunuz.
try
{
DataSet dSet = new DataSet();
dSet.ReadXml("http://xml.altinkaynak.com.tr/altin.xml");
Label1.Text = dSet.Tables[0].Rows[11]["ALIS"].ToString();
Label2.Text = dSet.Tables[0].Rows[11]["SATIS"].ToString();
Label3.Text = dSet.Tables[0].Rows[1]["ALIS"].ToString();
Label4.Text = dSet.Tables[0].Rows[1]["SATIS"].ToString();
dSet.Dispose();
}
catch (Exception ex)
{
Label1.Text = "hata : " + ex.Message;
}
Hiç yorum yok:
Yorum Gönder