|
|
|
ASP.NET C# สอบถามปัญหาการทำหน้า Edit information เพื่อ Update ค่าจาก text box |
|
|
|
|
|
|
|
ผมได้ศึกษาหัวข้อการทำ Edit information จากกระทู้นี้ครับ
https://www.thaicreate.com/asp.net/c-sharp-asp.net-ms-access-edit-update-record.html
แล้วนำประยุกต์กับ SQL Server โดย code เป็นอย่างนี้ครับ
ตัดมาแค่ส่วนของตารางที่มี text box
Code (ASP)
<table style="width: 100%;">
<tr>
<td style="width: 30%; font-weight:bold;">
Patient ID
</td>
<td>
<asp:TextBox ID="panIdTxt" runat="server" ReadOnly= "true" BackColor="#CCCCCC"></asp:TextBox>
</td>
</tr>
<tr>
<td style="font-weight:bold;">
Name</td>
<td>
<asp:TextBox ID="nameTxt" runat="server" ReadOnly= "true" BackColor="#CCCCCC"></asp:TextBox>
</td>
</tr>
<tr>
<td style="font-weight:bold;">
Surname</td>
<td>
<asp:TextBox ID="surnameTxt" runat="server" ReadOnly= "true" BackColor="#CCCCCC"></asp:TextBox>
</td>
</tr>
<tr>
<td style="font-weight:bold;">
Sex</td>
<td>
<asp:TextBox ID="sexTxt" runat="server" ReadOnly= "true" BackColor="#CCCCCC"></asp:TextBox>
</td>
</tr>
<tr>
<td style="font-weight:bold;" class="style1">
Birthday</td>
<td class="style1">
<%--<p><input type="text" id="datepicker"></p>--%>
<div>
<asp:TextBox ID="datepicker" class="field" runat="server"></asp:TextBox>
</div>
<%-- <div id="Div1">
From <asp:TextBox ID="startdate" class="field" runat="server"></asp:TextBox> -
To <asp:TextBox ID="enddate" class="field" runat="server"></asp:TextBox>
</div>--%>
</td>
</tr>
<tr>
<td style="font-weight:bold;">
Phone</td>
<td>
<asp:TextBox ID="phoneTxt" runat="server" ></asp:TextBox>
</td>
</tr>
<tr>
<td style="font-weight:bold;">
Mobile phone</td>
<td>
<asp:TextBox ID="mobileTxt" runat="server" ></asp:TextBox>
</td>
</tr>
<tr>
<td style="font-weight:bold;">
Fax</td>
<td>
<asp:TextBox ID="faxTxt" runat="server" ></asp:TextBox>
</td>
</tr>
<tr>
<td style="font-weight:bold;">
E-mail</td>
<td>
<asp:TextBox ID="mailTxt" runat="server" ></asp:TextBox>
</td>
</tr>
<tr>
<td style="font-weight:bold;">
Address</td>
<td>
<asp:TextBox ID="addressTxt" runat="server" ></asp:TextBox>
</td>
</tr>
<tr>
<td style="font-weight:bold;">
Age</td>
<td>
<asp:TextBox ID="ageTxt" runat="server" ></asp:TextBox>
</td>
</tr>
<tr>
<td style="font-weight:bold;">
Height</td>
<td>
<asp:TextBox ID="heightTxt" runat="server" ></asp:TextBox>
</td>
</tr>
<tr>
<td style="font-weight:bold;">
Weight</td>
<td>
<asp:TextBox ID="weightTxt" runat="server" ></asp:TextBox>
</td>
</tr>
<tr>
<td style="font-weight:bold;">
History</td>
<td>
<asp:TextBox ID="historyTxt" runat="server" ></asp:TextBox>
</td>
</tr>
<tr>
<td style="font-weight:bold;">
Doctor</td>
<td>
<asp:TextBox ID="doctorTxt" runat="server" ></asp:TextBox>
</td>
</tr>
<tr>
<td style="font-weight:bold;">
Department</td>
<td>
<asp:TextBox ID="departmentTxt" runat="server" ></asp:TextBox>
</td>
</tr>
<tr>
<td style="font-weight:bold;">
Technician</td>
<td>
<asp:TextBox ID="technicianTxt3" runat="server" ></asp:TextBox>
</td>
</tr>
<tr>
<td style="font-weight:bold;">
In hospital</td>
<td>
<asp:TextBox ID="inHospitalTxt4" runat="server" ></asp:TextBox>
</td>
</tr>
<tr>
<td style="font-weight:bold;">
</td>
<td>
<asp:Button ID="Button1" runat="server" Text="แก้ไขข้อมูล" class = "btn" onclick="Button1_Click" />
</td>
</tr>
<tr>
<td style="font-weight:bold;" colspan="2">
</td>
</tr>
</table>
Code (C#)
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Services;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Web.Configuration;
using System.Data.SqlClient;
using System.Text;
using System.Xml;
using System.Collections.Generic;
using System.Net;
using System.IO;
namespace MedicalWeb
{
public partial class panDetail : System.Web.UI.Page
{
SqlConnection objConn;
SqlCommand objCmd;
String strSQL;
SqlConnection objConn2;
SqlCommand objCmd2;
private string connectionString = WebConfigurationManager.ConnectionStrings["Pubs"].ConnectionString;
protected void Page_Load(object sender, EventArgs e)
{
//Response.Write("Name = " + Session["Username"] + "<br><br>");
string user = Session["Username"].ToString();
string type = Session["Type"].ToString();
string name = Session["Name"].ToString();
string surname = Session["Surname"].ToString();
string mail = Session["Email"].ToString();
lblUsername.Text = "User : " + user + "";
lblType.Text = "Type : " + type + "";
lblName.Text = "Name : " + name + "";
lblSurname.Text = surname;
//lblMail.Text = mail;
//objConn = new OleDbConnection(strConnString);
objConn = new SqlConnection(connectionString);
objConn.Open();
BindData();
}
void BindData()
{
string id = Request.QueryString["PanId"];
String strSQL;
strSQL = "SELECT * FROM PanInfo WHERE PanId = '" + id + "' ";
SqlDataReader dtReader;
objCmd = new SqlCommand(strSQL, objConn);
dtReader = objCmd.ExecuteReader();
dtReader.Read();
panIdTxt.Text = "Pat" + id + "";
//panIdTxt.Text = dtReader["Name"].ToString();
nameTxt.Text = dtReader["Name"].ToString();
surnameTxt.Text = dtReader["Surname"].ToString();
sexTxt.Text = dtReader["Sex"].ToString();
string birthday = dtReader["Birthday"].ToString();
string phone = dtReader["Phone"].ToString();
string mobile = dtReader["Mobile"].ToString();
string fax = dtReader["Fax"].ToString();
string mail = dtReader["Email"].ToString();
string address = dtReader["Address"].ToString();
string age = dtReader["Age"].ToString();
string height = dtReader["Height"].ToString();
string weight = dtReader["Weight"].ToString();
string history = dtReader["History"].ToString();
string doctor = dtReader["Doctor"].ToString();
string department = dtReader["Department"].ToString();
string technician = dtReader["Technician"].ToString();
string inhospital = dtReader["Inhospital"].ToString();
this.datepicker.Text = birthday;
this.phoneTxt.Text = phone;
this.mobileTxt.Text = mobile;
this.faxTxt.Text = fax;
this.mailTxt.Text = mail;
this.addressTxt.Text = address;
this.ageTxt.Text = age;
this.heightTxt.Text = height;
this.weightTxt.Text = weight;
this.historyTxt.Text = history;
this.doctorTxt.Text = doctor;
this.departmentTxt.Text = department;
this.technicianTxt3.Text = technician;
this.inHospitalTxt4.Text = inhospital;
objConn.Close();
dtReader.Close();
//objConn = null;
//objCmd = null;
//strSQL = null;
//*** BindData to GridView ***//
//myGridView.DataSource = dtReader;
//myGridView.DataBind();
//dtReader.Close();
//dtReader = null;
}
protected void Button1_Click(object sender, EventArgs e)
{
string updateSQL = "UPDATE PanInfo SET " + " Birthday = '" + this.datepicker.Text +
"' " + " ,Phone = '" + this.phoneTxt.Text +
"' " + " ,Mobile = '" + this.mobileTxt.Text +
"' " + " ,Fax = '" + this.faxTxt.Text +
"' " + " ,Email = '" + this.mailTxt.Text +
"' " + " ,Address = '" + this.addressTxt.Text +
"' " + " ,Age = '" + this.ageTxt.Text +
"' " + " ,Height = '" + this.heightTxt.Text +
"' " + " ,Weight = '" + this.weightTxt.Text +
"' " + " ,History = '" + this.historyTxt.Text +
"' " + " ,Doctor = '" + this.doctorTxt.Text +
"' " + " ,Department = '" + this.departmentTxt.Text +
"' " + " ,Technician = '" + this.technicianTxt3.Text +
"' " + " ,Inhospital = '" + this.inHospitalTxt4.Text +
"' " + " WHERE PanId = '" + Request.QueryString["PanId"] + "' ";
string sai = this.ageTxt.Text;
objConn2 = new SqlConnection(connectionString);
objConn2.Open();
objCmd2 = new SqlCommand(updateSQL, objConn2);
objCmd2.ExecuteNonQuery();
objConn2.Close();
}
}
}
code ค่อนข้างรกนิดนึงนะครับ เพราะว่าลองหลายวิธีมาก ตอนนี้ปัญหาคือมันไม่ update ค่าครับ
จาก code นี้ลองรันแล้วจะสามารถ select ค่าข้อมูลจาก sql server ลง text box ได้ครับ แต่หาก
เราแก้ไขข้อมูลใน text box แล้วกด "แก้ไขข้อมูล" เพื่อ Update ค่า ปรากฎว่าค่าใน text box ไม่เปลี่ยน
ตามครับ
จากตัวอย่างได้ประกาศ
Code (C#)
string sai = this.ageTxt.Text;
ไว้รับค่าจาก text box หลังจากแก้ไขแล้วกดปุ่ม update แล้วใส่ break point ไว้เพื่อดูว่าค่าเป็นอย่างไร
ทดลองแก้อายุจาก 20 เป็น 22 แต่พออ่านค่าจาก sai ยังเป็น 20 เช่น เดิมครับ ไม่ทราบว่าเป็นเพราะอะไร
หรือควรแก้อย่างไรครับ
Tag : ASP.NET, Ms SQL Server 2008, Web (ASP.NET), C#, VS 2010 (.NET 4.x)
|
ประวัติการแก้ไข 2012-01-11 03:01:58
|
|
|
|
|
Date :
2012-01-11 02:06:33 |
By :
amuds |
View :
1732 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เพิ่มเติมนิดนึงครับ หลังจากไล่ debug ลอง case ต่างๆดูครับ
ตอนนี้เหมือนว่า text box มันใช้การไม่ได้เลยครับ หามีการยุ่งกับ text box ครั้งนึงแล้ว
เช่น select เอาค่าลง text box แล้ว หรือกำหนดค่าให้มันแล้ว ไม่ว่าจะแก้ไข text box อย่างไร
มันก็จะไม่จำอันใหม่เลยครับ กลับกันหาก text box ยังไม่ได้ทำอะไรเลย (ผม comment บรรทัดนี้ออก)
Code (C#)
//this.ageTxt.Text = age;
พอรันก็จะได้กล่องเปล่าๆ เมื่อเราพิมค่าลงไป ปรากฎว่าใช้งานได้ครับ มีค่าเกิดขึ้น ไม่ทราบว่าต้องปรับ
Properties ของ text box ตรงไหนหรือเปล่าครับ ให้สามารถ edit ค่าได้? หรือว่าต้องปรับอะไรครับ
ขอบคุณครับ
|
|
|
|
|
Date :
2012-01-11 02:59:16 |
By :
amuds |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
สำหรับ SQL Server มีให้ครับ
Go to : (C#) ASP.NET SQL Server Edit/Update Record
ส่วน Error ของคุณ คุณได้วางไว้ใน page_load พอตอนที่กด Submit มันก็ไปโหลดค่ามาอีกครั้งหนึ่งครับ ลองดูในตัวอย่างผมดัก if(!Page.IsPostBack) ไว้ด้วยครับ
Code (C#)
void Page_Load(object sender,EventArgs e)
{
strConnString = "Server=localhost;Uid=sa;PASSWORD=;database=mydatabase;Max Pool Size=400;Connect Timeout=600;";
objConn = new SqlConnection(strConnString);
objConn.Open();
if(!Page.IsPostBack)
{
ViewData();
}
}
void ViewData()
{
//*** DataTable ***//
SqlDataAdapter dtAdapter;
DataTable dt = new DataTable();
strSQL = "SELECT * FROM customer WHERE CustomerID = '"+ Request.QueryString["CustomerID"] +"' ";
dtAdapter = new SqlDataAdapter(strSQL, objConn);
dtAdapter.Fill(dt);
if(dt.Rows.Count > 0)
{
this.txtCustomerID.Text = (string)dt.Rows[0]["CustomerID"];
this.txtName.Text = (string)dt.Rows[0]["Name"];
this.txtEmail.Text = (string)dt.Rows[0]["Email"];
this.txtCountryCode.Text = (string)dt.Rows[0]["CountryCode"];
this.txtBudget.Text = (string)dt.Rows[0]["Budget"].ToString();
this.txtUsed.Text = (string)dt.Rows[0]["Used"].ToString();
}
}
|
|
|
|
|
Date :
2012-01-11 06:47:12 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ของคุณน่าจะต้องใส่ตัวนี้ด้วยครับ
Code (C#)
if(!Page.IsPostBack)
{
BindData();
}
Code เต็ม ๆ
Code (C#)
protected void Page_Load(object sender, EventArgs e)
{
//Response.Write("Name = " + Session["Username"] + "<br><br>");
string user = Session["Username"].ToString();
string type = Session["Type"].ToString();
string name = Session["Name"].ToString();
string surname = Session["Surname"].ToString();
string mail = Session["Email"].ToString();
lblUsername.Text = "User : " + user + "";
lblType.Text = "Type : " + type + "";
lblName.Text = "Name : " + name + "";
lblSurname.Text = surname;
//lblMail.Text = mail;
//objConn = new OleDbConnection(strConnString);
objConn = new SqlConnection(connectionString);
objConn.Open();
if(!Page.IsPostBack)
{
BindData();
}
}
|
|
|
|
|
Date :
2012-01-11 06:48:51 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ
เพิ่งเข้ามาดูครับ เป็นอย่างนั้นจริงๆด้วยครับ ที่มันเป็นค่าเดิมอยู่
เพราะว่า เพราะกด update button แล้วหน้ามัน refresh ก่อนทำคำสั่งครับ
มันเลยไปทำ Page load อีกครั้ง ทำให้มันโหลดค่าเก่าจาก database ลงมา
บน Text box อีกครั้งครับ
วิธีแก้ก็ทำตามที่คุณ mr.win บอก หรือไม่ก็ ใส่ if เช็ค text box ใน page load
นั้นว่าเคยโหลดค่าจาก database มาหรือยัง ถ้ายังก็โหลด ถ้าโหลดแล้วก็ไม่ต้องทำ
|
|
|
|
|
Date :
2012-01-16 01:30:54 |
By :
amuds |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|