為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

Posting request to Server is giving error from Firefox but work perfectly fine in Chrome

more options

Hi,

I am positing a request to my server and I am getting following message with popup having cancel and resend button -

To display this page, Firefox must send information that will repeat any action (such as a search or order confirmation) that was performed earlier.

When I click on resend button, Firefox display application page to re-submit the request. Again it display popup message with cancel and resend button. This continues for ever

The above mentioned behavior is not seen in chrome browser and it work perfectly fine in chrome. Firefox version is 94.0.2 (64-bit).

Thanks in advance for help.

Regards, Samir

Hi, I am positing a request to my server and I am getting following message with popup having cancel and resend button - To display this page, Firefox must send information that will repeat any action (such as a search or order confirmation) that was performed earlier. When I click on resend button, Firefox display application page to re-submit the request. Again it display popup message with cancel and resend button. This continues for ever The above mentioned behavior is not seen in chrome browser and it work perfectly fine in chrome. Firefox version is 94.0.2 (64-bit). Thanks in advance for help. Regards, Samir
附加的畫面擷圖

所有回覆 (1)

more options

Hi Samir, this occurs if a page generated by a POST request is reloaded.

What is the last action before this message occurs?

Here's one common issue: if you are using this pattern --

<a href="#" onclick="doSomething();">Click me</a>

-- you need to cancel navigation in your script to prevent Firefox from following the link. This is customary, assuming it still works:

<a href="#" onclick="doSomething(); return false;">Click me</a>