使用经典asp显示查询结果并导出到excel
我正在开发一个关于经典 ASP 和 sql server 的小项目。
我有一个下拉菜单,用户可以在其中输入姓名等,它将基于该菜单创建一个查询并创建一个显示结果的表。
我想添加的是创建表后导出到 Excel 的选项。我看过其他教程,但它们都使用简单的 Select * from table 而不是基于用户输入的查询。
有人可以帮忙吗?
I'm working on a small project regarding classic ASP and sql server.
I have a drop down menu where the user can enter name, last name, etc. and it will create a query based on that and create a table displaying the result.
What I want to add is the option to export to excel after the table is created. I've looked at other tutorials but they all use the simple Select * from table rather than a query based on user input.
can anyone help on this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
解决了我的问题,该问题更多地涉及如何使用此代码。我最终所做的是将 SQL 查询存储在会话变量中,并创建一个指向新 ASP 页面的链接,该页面将连接到数据库、创建 Excel 对象并向其输出。
Solved my question which dealt more with how to use this code. What I ended up doing is storing the SQL query in a session variable and creating a link to a new ASP page that will connect to the database, create the Excel object, and output to it.
添加
,浏览器将打开保存/打开/取消对话框...
这是您想要的吗?
add
and the browser opens the save/open/cancel dialog...
is that what you want?