 |
|
|
 |
 |
|
ขอเกาหัว 2 ที
ปกติแล้วผมจะแนะนำให้เก็บ data ไว้ใน datatable แล้วใช้ controls ประเภท data
เพื่อแสดงผลเท่านั้น
วิธี search ใน datatable ก็ใช้ method select ซึ่งมันจะ return ออกมาเป็น datarow array
เวลาตรวจสอบก็ให้นับ member ใน array ว่ามีหรือไม่ ถ้ามีก็ให้ update datatable แล้วค่อย
bind กลับไปเพื่อแสดงผล
|
 |
 |
 |
 |
Date :
2010-05-21 10:59:24 |
By :
tungman |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ช่วยเขียนตัวอย่างให้ดูหน่อยได้มั้ยคะ
|
 |
 |
 |
 |
Date :
2010-05-21 12:03:53 |
By :
Doraemieee |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
MyListView.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="MyListView.aspx.cs" Inherits="MyListView" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:TextBox ID="ProductTextBox" runat="server"></asp:TextBox>
<asp:Button ID="AddButton" runat="server" Text="Add" />
<br />
<br />
<asp:ListView ID="ListView1" runat="server">
<LayoutTemplate>
<table width="400" cellspacing="0" cellpadding="5" style="border: 2px solid black;">
<tr style="background-color: #0099ee;">
<th>#</th>
<th>name</th>
<th>count</th>
</tr>
<tr id="itemPlaceholder" runat="server" />
</table>
</LayoutTemplate>
<ItemTemplate>
<tr>
<td>
<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
</td>
<td>
<asp:Label ID="Label2" runat="server" Text="Label"></asp:Label>
</td>
<td>
<asp:Label ID="Label3" runat="server" Text="Label"></asp:Label>
</td>
</tr>
</ItemTemplate>
</asp:ListView>
</div>
</form>
</body>
</html>
MyListView.aspx.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
public partial class MyListView : System.Web.UI.Page
{
private DataTable Dt;
protected void Page_Init(object sender, EventArgs e)
{
Dt = new DataTable();
Dt.Columns.Add(new DataColumn("index", System.Type.GetType("System.Int16")));
Dt.Columns.Add(new DataColumn("name", System.Type.GetType("System.String")));
Dt.Columns.Add(new DataColumn("count", System.Type.GetType("System.Int16")));
}
protected void Page_Load(object sender, EventArgs e)
{
if (ViewState["DataSource"] != null)
Dt = (DataTable)ViewState["DataSource"];
ListView1.DataSource = Dt;
ListView1.DataKeyNames = new string[] { "name" };
ListView1.ItemDataBound += new EventHandler<ListViewItemEventArgs>(ListView1_ItemDataBound);
ListView1.DataBind();
AddButton.Click += new EventHandler(AddButton_Click);
}
protected void ListView1_ItemDataBound(object sender, ListViewItemEventArgs e)
{
DataRowView Dr = (DataRowView)e.Item.DataItem;
if (e.Item.ItemType == ListViewItemType.DataItem)
{
((Label)e.Item.FindControl("Label1")).Text = Dr["index"].ToString();
((Label)e.Item.FindControl("Label2")).Text = Dr["name"].ToString();
((Label)e.Item.FindControl("Label3")).Text = Dr["count"].ToString();
}
}
protected void AddButton_Click(object sender, EventArgs e)
{
if (HaveProduct(ProductTextBox.Text))
{
// update data
DataRow[] editRow = Dt.Select(string.Format("name LIKE '{0}'", ProductTextBox.Text));
editRow[0]["count"] = int.Parse(editRow[0]["count"].ToString()) + 1;
}
else
{
// add new data
DataRow Dr = Dt.NewRow();
Dr["index"] = Dt.Rows.Count + 1;
Dr["name"] = ProductTextBox.Text;
Dr["count"] = 1;
Dt.Rows.Add(Dr);
}
ViewState["DataSource"] = Dt;
ListView1.DataSource = Dt;
ListView1.DataBind();
}
private bool HaveProduct(string ProductName)
{
DataRow[] haveData = Dt.Select(string.Format("name LIKE '{0}'", ProductName));
return (haveData.Length > 0) ? true : false;
}
}
|
 |
 |
 |
 |
Date :
2010-05-21 13:38:01 |
By :
tungman |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
รบกวนอีกทีขอ Code VB ได้มั้ยคะ
|
 |
 |
 |
 |
Date :
2010-05-21 17:52:15 |
By :
Doraemieee |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขอบคุนมากๆค่ะ 
|
 |
 |
 |
 |
Date :
2010-05-21 18:04:41 |
By :
Doraemieee |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
รบกวนอีกทีนะคะ เวลาบันทึกข้อมูลมันขึ้น ExecuteNonQuery incorrect syntax near 1 อ่ะค่ะ
Code (VB.NET)
Private Sub TSSave_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TSSave.Click
If TxtCusId.Text.Trim() = "" Then
MessageBox.Show("กรุณาป้อนรหัสลูกค้า", "การบันทึก")
TxtCusId.Focus()
Exit Sub
End If
If MessageBox.Show("ต้องการบันทึกข้อมูลใช่หรือไม่ ?", "", MessageBoxButtons.YesNo) = Windows.Forms.DialogResult.No Then
Exit Sub
End If
With cnn
If .State = ConnectionState.Open Then .Close()
.ConnectionString = strConn
.Open()
End With
tr = cnn.BeginTransaction()
' Try
Dim sqlsave As String = ""
Select Case FlagAction
Case "Add"
sqlsave = ("Insert Into TBCustomer(CusId,CusName,Address,Telephone)")
sqlsave &= ("Values (@cid,@CusName,@Add,@Tel)")
Case "Edit"
sqlsave = ("UPDATE TBCustomer ")
sqlsave &= (" SET CusName = @cusName")
sqlsave &= (",Address = @Add")
sqlsave &= (",Telephone = @tel")
sqlsave &= (" WHERE (CusID = @cusid)")
End Select
With cmm
.CommandText = CommandType.Text
.Connection = cnn
.Transaction = tr
.Parameters.Clear()
.Parameters.Add("@cusid", SqlDbType.NVarChar).Value = TxtCusId.Text.Trim()
.Parameters.Add("@CusName", SqlDbType.NVarChar).Value = TxtCusName.Text.Trim()
.Parameters.Add("@Add", SqlDbType.NVarChar).Value = TxtAddress.Text.Trim()
.Parameters.Add("@tel", SqlDbType.NVarChar).Value = Masktxtphone.Text.Trim()
.ExecuteNonQuery()
End With
tr.Commit()
MessageBox.Show("บันทึกข้อมูลเรียบร้อยแล้วค่ะ")
' ShowDataCus()
' Catch ex As Exception
' tr.Rollback()
' MessageBox.Show("ไม่สามารถบันทึกข้อมูลได้ เนื่องจาก" & ex.Message, "ข้อผิดพลาด")
' End Try
End Sub
|
 |
 |
 |
 |
Date :
2010-05-21 18:14:12 |
By :
Doraemieee |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
บรรทัดที่ 32 แก้เป็น
.CommandText = sqlsave
ค่ะ
ไม่ต้องเอาขึ้น topic ใหม่ก็ได้มั้งคะ
อีกอย่าง จำเป็นต้องใช้ transaction ด้วยหรอคะ
ไม่น่ามั้งคะ เอาอะไรที่เป็น transaction ออก ก็น่าจะ run ได้ตามปกติ เร็วกว่าอีกตะหาก
|
 |
 |
 |
 |
Date :
2010-05-21 21:14:51 |
By :
blurEyes |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขอบคุนค่ะ 
|
 |
 |
 |
 |
Date :
2010-05-22 06:53:26 |
By :
doraemieee |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|