我们如何从VB页面调用jsp页面?
我创建了一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 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.