本文介绍了vb.net中的datalis编码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
SqlDataSource1.UpdateParameters("A_Name").DefaultValue = categoryName.Text
SqlDataSource1.UpdateParameters("Description").DefaultValue = description.Text
SqlDataSource1.Update()
DataList1.EditItemIndex = -1
DataList1.DataBind()
我可以在上面的代码中用oledb代替sql做什么.此代码需要进行哪些更改?
what can i used in oledb in place of sql in the above code.what changes is needed in this code ?
推荐答案
OledbDataSource1.UpdateParameters("A_Name").DefaultValue = categoryName.Text
OledbDataSource1.UpdateParameters("Description").DefaultValue = description.Text
OledbDataSource1.Update()
DataList1.EditItemIndex = -1
DataList1.DataBind()
如果您还有其他查询,请回复.
if you have any other query plz reply.
这篇关于vb.net中的datalis编码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!