Beispiel #1
0
        private void ProfilGetir()
        {
            DataTable dtpp = klas.getDataTable("SELECT * FROM Uye WHERE UyeId=" + Session["UyeId"]);

            profilpp.DataSource = dtpp;
            profilpp.DataBind();
        }
Beispiel #2
0
        private void MesajGetir()
        {
            DataTable dtgrup = klas.getDataTable("SELECT * FROM Mesaj ORDER BY MesajId DESC");

            rptMesajlar.DataSource = dtgrup;
            rptMesajlar.DataBind();
        }
Beispiel #3
0
        private void UyeGetir()
        {
            DataTable dtgrup = klas.getDataTable("SELECT * FROM Uye");

            rptUyeler.DataSource = dtgrup;
            rptUyeler.DataBind();
        }