在 Coldfusion 中检索数据并将其放入文本框
谁能建议一个简单的代码来从 MSQL5 中的表中检索数据并将其添加到 Coldfusion 中的特定文本框中?
can anyone suggest a simple code to retrieve data from a table in MSQL5 and add it to particular text boxes in coldfusion?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要比这更具体才能获得任何体面的帮助。它基本上是这样的:
获取你的记录集。现在将字段输出到某处:
或者将其放入文本字段中:
或者如果您使用
您可以这样做:希望这能满足您的需要,否则请更具体你的问题。
You'll need to be more specific than that to get any decent help. It basically goes like this though:
That gets your recordset. Now output the field somewhere:
Or put it into a text field:
Or if you're using
<cfform>
you can do this:Hopefully that gets you what you need, otherwise please be more specific with your question.