|
|
|
รบกวนผู้รู้หน่อยครับ....เกียวกับการ insertข้อมูล และอื่นๆๆ |
|
|
|
|
|
|
|
คือผม ทำระบบการจองรถ ได้เขียนเป็น c# ซึ่งเป็นครั้งแรกที่เขียนครับ จึงมีปันหา กล่าวคือ
ผมได้ใช้โค้ดการ insert ตามนี้ครับ
<%@ Import Namespace="System.Data"%>
<%@ Import Namespace="System.Data.SqlClient"%>
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="page1.aspx.cs" Inherits="_Default" %>
<script runat="server">
void Page_Load(object sender,EventArgs e)
{
}
void btnSave_Click(Object sender , EventArgs e)
{
SqlConnection objConn = new SqlConnection();
SqlCommand objCmd = new SqlCommand();
String strConnString,strSQL;
strConnString = "Server=c\\sqlexpress;UID=test;;database=test;Max Pool Size=400;Connect Timeout=600;";
strSQL = "INSERT INTO customer (CustomerID,Name,Email,CountryCode,Budget,Used) " +
" VALUES " +
" ('" + this.txtCustomerID.Text + "','" + this.txtName.Text + "','" + this.txtEmail.Text + "', " +
" '" + this.txtCountryCode.Text + "','" + this.txtBudget.Text + "','" + this.txtUsed.Text + "')";
objConn.ConnectionString = strConnString;
objConn.Open();
objCmd.Connection = objConn;
objCmd.CommandText = strSQL;
objCmd.CommandType = CommandType.Text;
this.pnlAdd.Visible = false;
try
{
objCmd.ExecuteNonQuery();
this.lblStatus.Text = "Record Inserted";
this.lblStatus.Visible = true;
}
catch (Exception ex)
{
this.lblStatus.Visible = true;
this.lblStatus.Text = "Record can not insert Error ("+ ex.Message +")";
}
objConn.Close();
objConn = null;
this.Load = page1_aspx;
}
</script>
<html>
<head>
<title>ThaiCreate.Com ASP.NET - SQL Server</title>
</head>
<body>
<form id="form1" runat="server">
<asp:Panel id="pnlAdd" runat="server">
<table width="353" border="1">
<tbody>
<tr>
<td width="102">
<asp:Label id="lblCustomerID" runat="server" text="CustomerID"></asp:Label></td>
<td width="235">
<asp:TextBox id="txtCustomerID" runat="server" Width="79px"></asp:TextBox>
</td>
</tr>
<tr>
<td>
<asp:Label id="lblName" runat="server" text="Name"></asp:Label></td>
<td>
<asp:TextBox id="txtName" runat="server" Width="177px"></asp:TextBox>
</td>
</tr>
<tr>
<td>
<asp:Label id="lblEmail" runat="server" text="Email"></asp:Label></td>
<td>
<asp:TextBox id="txtEmail" runat="server" Width="155px"></asp:TextBox>
</td>
</tr>
<tr>
<td>
<asp:Label id="lblCountryCode" runat="server" text="CountryCode"></asp:Label></td>
<td>
<asp:TextBox id="txtCountryCode" runat="server" Width="38px"></asp:TextBox>
</td>
</tr>
<tr>
<td>
<asp:Label id="lblBudget" runat="server" text="Budget"></asp:Label></td>
<td>
<asp:TextBox id="txtBudget" runat="server" Width="76px"></asp:TextBox>
</td>
</tr>
<tr>
<td>
<asp:Label id="lblUsed" runat="server" text="Used"></asp:Label></td>
<td>
<asp:TextBox id="txtUsed" runat="server" Width="76px"></asp:TextBox>
</td>
</tr>
</tbody>
</table>
<br />
<asp:Button id="btnSave" onclick="btnSave_Click" runat="server" Text="Save"></asp:Button>
<br />
</asp:Panel>
<asp:Label id="lblStatus" runat="server" visible="False"></asp:Label>
</form>
</body>
</html>
เช็กจากการฐานข้อมูล ก็ข้อมูลเข้า แต่ มันจะค้างหน้าที่แสดงข้อความ "Record Inserted ซึ่งเป็นส่วนของfuntionครับ
คือผมอยากให้มัน แสดงแปปเดียว มีปุ่มกดย้อนไปกรอกข้อมูลเพิ่ม หรือ กลับหน้าหลัก แบบนี้น่ะครับ หรือ reตัวเอง
ไม่ทราบว่าทำได้ไม่ครับ รบกวนให้ความรู้ด้วยครับ ขอบคุณครับ
Tag : - - - -
|
|
|
|
|
|
Date :
2010-06-09 10:14:32 |
By :
ch |
View :
1083 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำเองดิครับ นี่ก็ก็อปตัวอย่างมาทั้งดุ้นแล้ว ถ้าจะให้ตรงความต้องการเลย
มันก็ต้องลองลงมือทำบ้างจะได้เป็น ไม่งั้นจะเพิ่มแบบโน้นแบบนี้ ไม่ต้องโพสขอโค้ดกันเมื่อยหรือครับ
|
|
|
|
|
Date :
2010-06-09 15:16:27 |
By :
tungman |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก๊อบของที่นี่มาเลยนี่คะ ลองทำความเข้าใจกับโค้ดดูดีกว่านะคะ เรื่องนี้มันไม่ยากเท่าไร หากลองศึกษาก็ต้องเข้าใจแน่นอนค่ะ อย่าลอกของคนอื่นมาเลย ^_^
|
|
|
|
|
Date :
2010-06-11 10:26:14 |
By :
Sorceress |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
--thank you สำหรับคำแนะนำครับ....
พอดีผมพึ่งได้ลองเป็นครั้งแรกเลยไม่รู้จะเริ่มไร ได้copy แล้วดูการทำงานของมัน
ขอบคุณครับ
|
|
|
|
|
Date :
2010-06-15 09:18:23 |
By :
plus |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมไม่เคยเขียนเวป นะ
ลองเปลื่ยนตรง this.lblStatus.Text = "Record Inserted";
ให้เป็น Massege หรือ alert ดูครับ
|
|
|
|
|
Date :
2010-06-15 09:44:49 |
By :
tee |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|