检索一个小表单并使用 AJAX 将其放置在 ASP.NET WebForm 上
我希望将一个小窗体集成到我的 ASP.NET 页面中,该窗体像模态弹出窗口一样弹出,但在弹出窗口之前不会加载。
,步骤如下:
- 基本上 现有的 ASP.NET 表单。
- 用户单击按钮。
- 弹出一个模式弹出窗口(使用 jQuery - 弹出窗口以 div 开头,样式设置为显示:无)
- 显示弹出窗口,并且“请稍候”旋转圆圈旋转,同时...
- 向服务器发出异步调用,询问一个简单的形式。
简单的表单将有一个文本框和一个按钮。这些控件是 ASP.NET 控件(显然它们在服务器上运行,然后以可读的 HTML 形式发送回浏览器),在文本框中输入信息后,按下 ASP.NET 按钮,它会发回,调用 Button1_Click事件并将文本框的内容发送到服务器。
我的问题是,不使用 ASP.NET AJAX 可以完成此操作吗?例如,是否可以使用 jQuery 或 XMLHTTPRequest 在另一个 .aspx 页面或 Web 服务上执行 GET,并在模式弹出窗口内呈现该页面的内容?
I'm looking to integrate a small form into my ASP.NET page that pops up like a modal popup but is not loaded until the window pops up.
Basically, here are the steps:
- Have a pre-existing ASP.NET form.
- User clicks a button.
- A modal popup pops up (using jQuery - the popup starts as a div with style set to display: none)
- The popup is shown and a "please wait" spinning circle thing spins while...
- An async call is made to the server asking for a simple form.
The simple form will have a textbox and a button. The controls are ASP.NET controls (obviously they are run at the server and then sent back to the browser in readable HTML) and, after typing information into the textbox, you push the ASP.NET button and it posts back, calls the Button1_Click event and sends the contents of the textbox to the server.
My question is, can this be done without using ASP.NET AJAX? Can it be done using jQuery or an XMLHTTPRequest, for instance, to perform a GET on another .aspx page or a web service, and render the contents of that page inside the modal popup?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ajax 是
XMLHTTPRequest
它只会让你的生活更轻松......答案是肯定的,它可以在这里完成,这是一篇很好的文章 https://stackoverflow.com/a/4657324/413670
ajax is
XMLHTTPRequest
it only makes your life easier... and the answer is yes it can be donehere is a good post https://stackoverflow.com/a/4657324/413670