您的位置:首页 > 其它

dataset删除数据

2004-09-14 16:39 246 查看
Imports System.Data
Imports System.Data.OleDb

Public Class WebForm4
Inherits System.Web.UI.Page

#Region " Web 窗体设计器生成的代码 "

'该调用是 Web 窗体设计器所必需的。
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()

End Sub
Protected WithEvents DataGrid1 As System.Web.UI.WebControls.DataGrid
Protected WithEvents Button1 As System.Web.UI.WebControls.Button
Protected WithEvents DropDownList1 As System.Web.UI.WebControls.DropDownList

'注意: 以下占位符声明是 Web 窗体设计器所必需的。
'不要删除或移动它。
Private designerPlaceholderDeclaration As System.Object

Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init
'CODEGEN: 此方法调用是 Web 窗体设计器所必需的
'不要使用代码编辑器修改它。
InitializeComponent()
End Sub

#End Region

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
If Not IsPostBack Then
mydatashow()
End If
End Sub

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Response.Write(DropDownList1.SelectedItem.Value)
Dim myconnection As OleDbConnection = New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & Server.MapPath("aspnet.mdb"))
Dim myadapter As OleDbDataAdapter = New OleDbDataAdapter("select * from student where id=" + DropDownList1.SelectedItem.Value.ToString, myconnection)
Dim mydataset As DataSet = New DataSet
myadapter.Fill(mydataset, "student")
Dim mybuilder As OleDbCommandBuilder = New OleDbCommandBuilder(myadapter)
mydataset.Tables("student").Rows(0).Delete()
myadapter.Update(mydataset, "student")
mydatashow()
End Sub

Private Function mydatashow()
Dim myconnection As OleDbConnection = New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & Server.MapPath("aspnet.mdb"))
Dim myadapter As OleDbDataAdapter = New OleDbDataAdapter("select * from student ", myconnection)
Dim mydataset As DataSet = New DataSet
myadapter.Fill(mydataset, "student")
DataGrid1.DataSource = mydataset.Tables("student").DefaultView
DataGrid1.DataBind()
DropDownList1.DataSource = mydataset.Tables("student").DefaultView
DropDownList1.DataTextField = "id"
DropDownList1.DataValueField = "id"
DropDownList1.DataBind()
myconnection.Close()
End Function
End Class
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: