-
Notifications
You must be signed in to change notification settings - Fork 0
/
YorumDetay.aspx.cs
57 lines (48 loc) · 1.87 KB
/
YorumDetay.aspx.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.SqlClient;
public partial class YorumDetay : System.Web.UI.Page
{
sqlsinif bgl = new sqlsinif();
string id = "";
protected void Page_Load(object sender, EventArgs e)
{
id = Request.QueryString["Yorumid"];
if (Page.IsPostBack == false)
{
SqlCommand komut = new SqlCommand("Select YorumAdSoyad,YorumMail,Yorumicerik,YemekAd From Tbl_Yorumlar inner join Tbl_Yemekler on Tbl_Yorumlar.Yemekid=Tbl_Yemekler.Yemekid where Yorumid=@p1", bgl.baglanti());
komut.Parameters.AddWithValue("@p1", id);
SqlDataReader dr = komut.ExecuteReader();
while (dr.Read())
{
TextBox1.Text = dr[0].ToString();
TextBox2.Text = dr[1].ToString();
TextBox3.Text = dr[2].ToString();
TextBox4.Text = dr[3].ToString();
}
bgl.baglanti().Close();
}
}
protected void Button1_Click(object sender, EventArgs e)
{
SqlCommand komut = new SqlCommand("update tbl_yorumlar set yorumicerik=@p1,yorumonay=@p2 where yorumid=@p3", bgl.baglanti());
komut.Parameters.AddWithValue("@p1", TextBox3.Text);
komut.Parameters.AddWithValue("@p2", true);
komut.Parameters.AddWithValue("@p3", id);
komut.ExecuteNonQuery();
bgl.baglanti().Close();
Response.Redirect("Yorumlar.aspx");
}
protected void Button2_Click(object sender, EventArgs e)
{
SqlCommand komut2 = new SqlCommand("delete from tbl_yorumlar where yorumid=@p1", bgl.baglanti());
komut2.Parameters.AddWithValue("@p1", id);
komut2.ExecuteNonQuery();
bgl.baglanti().Close();
Response.Redirect("Yorumlar.aspx");
}
}