带条件的 GridView 按钮
我有一个包含 3 列名称、姓氏、更改(ButtonField 列)的 gridview,它是使用以下代码从 SqlDataReader 填充的
SqlCommand sqlCommand = new SqlCommand("select * from Empl where userId ='" + userid + "'", sqlConnection);
sqlConnection.Open();
SqlDataReader reader = sqlCommand.ExecuteReader();
GridView1.DataSource = reader;
GridView1.DataBind();
在我的数据库中有 4 列 UserId、名称、姓氏、更改(位)。仅当数据库内的 Change(bit) 列为 true 时,如何才能显示按钮更改?
I have a gridview with 3 columns Name,Surname,Change(ButtonField column) which is populated from an SqlDataReader with the following code
SqlCommand sqlCommand = new SqlCommand("select * from Empl where userId ='" + userid + "'", sqlConnection);
sqlConnection.Open();
SqlDataReader reader = sqlCommand.ExecuteReader();
GridView1.DataSource = reader;
GridView1.DataBind();
In my database there are 4 columns UserId,Name,Surname,Change(bit). How can i show the button change only when Change(bit) column is true inside the database?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以这样做......
正如你在评论中提到的,你在上面的代码中遇到错误,你尝试像......
You can do like..
As you mentioned in the comment you are getting error on the above code, you try like...