using System; using System.Collections; using System.Configuration; using System.Data; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Xml.Linq; using System.Data.SqlClient; public partial class Admin_Book1 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { Session["แปลง"] = "77"; Session["Product"] = "โครงการA"; Label1.Text = Session["Product"].ToString(); if (Session["แปลง"] != null) { SqlConnection conn = new SqlConnection(MyConnection.GetConnection()); try { Label1.Text = Session["Product"].ToString(); conn.Open(); string sql = "SELECT * FROM " + Session["Product"].ToString() +" WHERE แปลง=@แปลง"; SqlCommand cmd = new SqlCommand(sql, conn); cmd.Parameters.AddWithValue("@แปลง", Session["แปลง"].ToString()); SqlDataReader dr = cmd.ExecuteReader(); if (dr != null) { if (dr.Read()) { Response.Write("dr has row"); Session["ID"] = dr[Session["Product"].ToString() + "ID"].ToString(); Response.Write(Session["ID"].ToString()); TextBox1.Text = dr["ชื่อผู้จอง"].ToString(); TextBox2.Text = dr["ตั้งขาย"].ToString(); } dr.Close(); } try { cmd.ExecuteNonQuery(); } finally { conn.Close(); } } catch (Exception ex) { Response.Write(ex.ToString()); throw; } } else { Response.Write("ผิดพลาด"); } } protected void Button1_Click(object sender, EventArgs e) { SqlConnection conn = new SqlConnection(MyConnection.GetConnection()); try { conn.Open(); string sql = "UPDATE " + Session["Product"].ToString() + " SET ชื่อผู้จอง=@ชื่อผู้จอง, ตั้งขาย=@ตั้งขาย WHERE แปลง=@แปลง"; SqlCommand cmd = new SqlCommand(sql, conn); cmd.Parameters.Clear(); cmd.Parameters.Add("@แปลง", Session["ID"].ToString()); cmd.Parameters.Add("@ชื่อผู้จอง", TextBox1.Text); cmd.Parameters.Add("@ตั้งขาย", TextBox2.Text); try { cmd.ExecuteNonQuery(); } finally { conn.Close(); } } catch (Exception ex) { Response.Write(ex.ToString()); throw; } } }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง