如何从 html 按钮调用 sql 过程?
我有一个 SQL 过程,它根据传递给它的输入参数生成一个 util 文件作为其输出。
我必须从 HTML 页面的 3 个文本框传递这些参数。还有一个按钮,单击该按钮将调用该过程并生成 util。
我想在 jsp 中完成它并在那里编写完整的过程。但我希望 util 文件在生成时在 WORD 中打开。
我想知道如何使用按钮调用过程以及如何在生成后显示 util。
I have a SQL procedure that generates a util file as its output depending on the input parameters that are passed to it.
I have to pass these parameters from an HTML page from 3 text boxes. There will also be a button, on clicking which, the procedure will be called and the util will be generated.
I thought of doing it in jsp and writing the full procedure there itself. But I want the util file to be opened in WORD the moment it is generated.
I want to know how to call a procedure using button and how to show the util after its generated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一些准则:
GET
)才能在服务器端进行处理,.doc
,您可以使用 Apache POI< /a>.如果您不熟悉 JDBC 或 POI,您将需要经历一个陡峭的学习曲线。没有什么神奇的方法可以生成所需格式的文件。
A few guidelines:
GET
preferably) in order to do processing on the server-side.doc
, you can use Apache POI.If you are not familiar with JDBC or POI, you will need to go up a steep learning curve. There is no magical way to generate a file in a desired format.