由另一页

时间:2016-03-04 01:49:42

标签: jquery asp.net vb.net

以下是该方案: enter image description here

我的源页面需要调用目标页面来检查它是否存在。它有时可以是应用程序中的任何页面或外部的某个页面。现在,在它调用应用程序中的一个页面的情况下,在目标页面上进行两次回发可能会由于其处理而导致一些性能问题(我理解这是因为GET方法)。

当从源页面调用时,目标页面是否有一种回发方式?

1 个答案:

答案 0 :(得分:0)

你能在下面试试吗,

<form method="post" action="YourPage.aspx">
  <h1>Page passing tests</h1>
  <p>Please enter some data in the field below and click send</p>
  <input type="text" id="txt1" name="txt1" placeholder="enter text here" />
  <button type="submit" id="btnSend">Send</button>
</form>