 |
|
เรื่อง delete record ใน datagrid คือ ทำแล้วค่ะ แต่ยังลบได้ทีละแค่ 1 record กำลังแก้ๆ ให้ลบได้ทีละหลายๆ record อยู่ค่ะ รบกวนผู้รู้ชอบตอบด้วยนะคะ |
|
 |
|
|
 |
 |
|
ใครพอรุบ้าง ช่วยตอบที TT
|
 |
 |
 |
 |
Date :
2010-09-30 13:46:42 |
By :
pup |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
<asp:GridView ID="GridView1" runat="server" CellPadding="4" ForeColor="#333333"
GridLines="None" AutoGenerateColumns="false">
<RowStyle BackColor="#EFF3FB" />
<FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
<SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" />
<HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<EditRowStyle BackColor="#2461BF" />
<AlternatingRowStyle BackColor="White" />
<Columns>
<asp:TemplateField>
<ItemTemplate>
<asp:CheckBox ID="chkSelect" runat="server" />
</ItemTemplate>
</asp:TemplateField>
<asp:BoundField DataField="FirstName" SortExpression="FirstName" HeaderText="First Name" />
<asp:BoundField DataField="LastName" SortExpression="LastName" HeaderText="Last Name" />
<asp:BoundField DataField="Title" SortExpression="Title" HeaderText="Title" />
</Columns>
</asp:GridView>
<asp:Button ID="Button1" runat="server" Text="Button" />
aspx.vb
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim checkBox As CheckBox
For Each row As GridViewRow In GridView1.Rows
checkBox = CType(row.FindControl("chkSelect"), CheckBox)
If checkBox.Checked Then
Dim conn As SqlConnection = New SqlConnection(strCon)
Dim sql = "insert into VBClassEmp(FirstName,LastName,Title,AddBy,CreateDate) " & _
" values('" & row.Cells(1).Text & "','" & row.Cells(2).Text & "' " & _
",'" & row.Cells(3).Text & "','Pheak',GetDate()) "
Dim cmd As SqlCommand = New SqlCommand(sql, conn)
conn.Open()
cmd.ExecuteNonQuery()
conn.Close()
End If
Next
End Sub
|
 |
 |
 |
 |
Date :
2010-09-30 14:07:25 |
By :
superpheak |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
งง ค่ะ
แหะๆ
- -"
|
 |
 |
 |
 |
Date :
2010-09-30 14:11:38 |
By :
pup |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ลองใส่ checkbox ที่ Data Gride ดูครับ
แล้ว วนลุป หา ตัว ที chekbox เอาไว้แล้วทำการ Delete
for i as interger = 0 to DataGrid.rows.count - 1
dim chk as checkbox = datagrid.rows(i).findcotrol("ชื่อCheckbox")
if chk.checked = true then
datadrid.rows(i).delete
exit sub
end if
next
========================================
ลองไปประยุกต์ดูนะครับ....
ผิดถูกอย่างไร ก็ขอ อภัย ด้วยนะครับ...
|
 |
 |
 |
 |
Date :
2010-09-30 15:03:36 |
By :
koungkung |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขอบคุณนะคะ เด่วจะลองไปประยุกต์ใช้ดูค่ะ
^^
|
 |
 |
 |
 |
Date :
2010-09-30 18:02:43 |
By :
pup |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|