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

About Bahadır Şahin

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.

0 comments:

Öne Çıkan Yayın

GridView da Seçili Satırı DetailsView da Göstermek

Merhaba arkadaşlar bu makalemizde GridView nesnesi ile birlikte DetailsView nesanesini birlikte kullanacağız. GridView da seçili satırın de...