SqlDataSource.Select()?我该如何使用这个? (ASP.net)
我正在尝试使用 VB.NET 从 SQL 数据库检索值。如何使用SqlDataSource.Select()
?有没有办法将值移至可用于其他用途的变量?
我知道它有点分散和模糊,但这是我能做的最好的事情。我基本上需要将标签文本设置为表中的值。
I'm trying to retrieve values using VB.NET from a SQL database. How do I use SqlDataSource.Select()
? Is there a way to move the value to a variable that I can use for other things?
I know its kind of scattered and vague but that is the best I can do. I basically need to set a labels text to a value in a table.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这会将结果查询放入数据表中。
This puts the result query in to a DataTable.
回复评论中的最后一个问题:
Repying to last question in comment:
我疯狂地尝试执行这个简单的操作:
从 sqldatasource 检索数据并将其放入我可以操作的变量中。
最后,这里是为 VB.NET 执行此操作的后台代码:
foreach
,在本例中仅获取第一个值,但您可以从数据表中获取任何值并将其放入向量中,或其他字符串,这样您就可以控制来自 sqldatasource 的数据。享受
I was getting crazy trying to do this simple operation:
retrieving data from sqldatasource and put it into variables that I can manipulate.
At the end, Here the working behind code to do this for VB.NET:
the
for each
, in this case gets only the first value but you can get any value from datatable and put it into vector, or other strings, so you can control data coming from sqldatasource.ENJOY