Kayıt Ekleme ve DetailsView da Gösterim
Merhaba arkadaşlar bu makalemizde sql veritabanımıza yeni kayıt ekleyeceğiz ve eklenen kayıtın DetailsView da gösterimini sağlayacağız.
Screenshot
Şekil 1
Default.aspx.cs
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
int i;
protected void btnSave_Click(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection("Data Source=(LocalDB)\\MSSQLLocalDB;AttachDbFilename=|DataDirectory|\\kategori.mdf;Integrated Security=True");
SqlDataAdapter da = new SqlDataAdapter("insert into [dbo].[Table] values('" + txtAuthor.Text +"', '"+ txtBook.Text + "', '" + txtPrice.Text + "')", con);
DataSet ds = new DataSet();
da.Fill(ds);
bindDetailsView();
}
private void bindDetailsView()
{
SqlConnection con = new SqlConnection("Data Source=(LocalDB)\\MSSQLLocalDB;AttachDbFilename=|DataDirectory|\\kategori.mdf;Integrated Security=True");
DataSet ds = new DataSet();
SqlDataAdapter da = new SqlDataAdapter("select * from [dbo].[Table] where Yazar='" + txtAuthor.Text + "' ", con);
da.Fill(ds);
DetailsView1.DataSource = ds;
DetailsView1.DataBind();
}
}
Bir makalenin daha sonuna geldik. Bir sonraki makalede görüşmek üzere. Bahadır ŞAHİN