提交前有回发时,自动完成不会保存

发布于 2024-12-03 14:07:13 字数 411 浏览 0 评论 0原文

我有一个非常简单的 asp.net 表单。

一个文本框, 具有自动回发功能的下拉列表, 会出现一个提交按钮

  1. 如果我在文本框中输入一些值,然后在下拉列表中选择一个项目,那么现在
  2. ,这会导致页面回发。
  3. 然后单击提交按钮,

文本框中的值不会保存到自动完成数据存储中。

如果我反其道而行之。

  1. 从下拉列表中选择一个将导致页面回发的项目。
  2. 在文本框中输入一些值。
  3. 单击提交。 该值被保存以供自动完成。

我认为这可能与页面生命周期和视图状态有关。但我该如何解决这个问题呢?我用的是IE8。

我尝试过 AutoCompleteSaveForm 命令。但如果执行后立即有回发,则不起作用。

I have a very simple asp.net form.

a text box,
a dropdownlist with autopostback,
a submit button

  1. now if i type in some value into the textbox
  2. and then select an item in the dropdown which causes a page postback.
  3. then click on submit button

the value in the text box does not get saved into the autocomplete data store.

if i do the opposite.

  1. select an item from the dropdown which will cause a page postback.
  2. type in some values in the textbox.
  3. click submit.
    the value is saved for the autocomplete.

I think this may have something to do with the page life cycle and the viewstate. but how do i get around this issue? I'm using IE8.

I have tried the AutoCompleteSaveForm command. but it does not work if there's a postback immediately after the execution of it.

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

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

发布评论

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

评论(1

心房敞 2024-12-10 14:07:13

将其用于 IE:

if($.browser.msie){window.external.AutoCompleteSaveForm(FormName)};

它不适用于 Firefox,我正在尝试找到答案......

Use this for IE:

if($.browser.msie){window.external.AutoCompleteSaveForm(FormName)};

It does not work for Firefox and I'm trying to find the answer for that....

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