我遇到了一個非常奇怪的錯誤。爲什麼asp.net UpdatePanel會破壞我的網址(.aspx0)?
我有一個工作得很好的頁面,沒有UpdatePanel。當我用UpdatePanel包圍東西時,出現此錯誤:
Server Error in '/' Application.
The resource cannot be found.
Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
Requested URL: /SearchTicket.aspx0
Version Information: Microsoft .NET Framework Version:2.0.50727.3603; ASP.NET Version:2.0.50727.3082
頁面名稱爲SearchTicket。 aspx。當啓用UpdatePanel時,它會嘗試打開一個SearchTicket。 aspx0,顯然不能做到這一點,然後返回一個404
這是一個已知的bug?我在網上找不到關於它的線索。
備註:頁面首次按預期加載。第一次更新使這發生。
? – Eric
是的!在這種情況下,updatepanel在searchticket中聲明,而不是在.master中聲明。我沒有在其他地方的應用程序 –