使用经典asp显示查询结果并导出到excel

发布于 2024-09-18 19:02:51 字数 198 浏览 4 评论 0原文

我正在开发一个关于经典 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

慕烟庭风 2024-09-25 19:03:08

解决了我的问题,该问题更多地涉及如何使用此代码。我最终所做的是将 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.

话少心凉 2024-09-25 19:03:04

添加

response.contenttype ="Application/vnd.excel"
response.addheader "Content-Disposition", "attachment; filename=excelDatei.xls"

,浏览器将打开保存/打开/取消对话框...

这是您想要的吗?

add

response.contenttype ="Application/vnd.excel"
response.addheader "Content-Disposition", "attachment; filename=excelDatei.xls"

and the browser opens the save/open/cancel dialog...

is that what you want?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文