我们如何从VB页面调用jsp页面?

发布于 2024-10-16 04:38:50 字数 143 浏览 2 评论 0原文

我创建了一个 JSP 页面,它将接受参数。页面收到参数后,将返回一个XML给用户。

我想创建一个VB程序,它将显示一个表单并要求用户输入参数的值,然后将其传递到JSP页面,并获取返回XML并将其显示给VB程序中的用户。

可以这样做吗? 谢谢

I have created a JSP page, which will accept parameter. Once the page received the parameter, it will return an XML to user.

I want to create a VB program, that will display a form and ask user to enter the value of the parameter, and then will pass it to the JSP page, and get the return XML and display it to user in VB program.

Is it possible to do so?
Thx

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

泪痕残 2024-10-23 04:38:50

使用 HttpRequest 类请求网页。然后只需操作 URL 以添加查询字符串参数。如果您需要通过 POST 请求(而不是 GET)执行此操作,请将参数写入正文中。

Use the HttpRequest class to request a web page. Then just manipulate the URL to add query string parameters. If you need to do this via a POST request (versus GET), write the parameters in the body.

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