本文介绍了如何在FormView控件中绑定数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在formview控件中绑定数据
为此发布解决方案
在此先感谢
how to bind data in the formview control
post solution for this
thanks in advance
推荐答案
SqlConnection myConnection = new SqlConnection(ConnectionString);
SqlDataAdapter ad = new SqlDataAdapter("SELECT * FROM Users", myConnection);
DataSet ds = new DataSet();
ad.Fill(ds);
FormView1.DataSource = ds;
FormView1.DataBind();
这篇关于如何在FormView控件中绑定数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!