Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このエラーが発生します。ICallbackEventHandlerを使用して、いくつかのドロップダウンを埋めています。特定の条件で、特定のaspcページにリダイレクトしたいのですが、
Response.Redirectは、ページコールバックでは呼び出すことができません。
Server.Transferも使用しましたが、問題は解決しませんでした。
Response.Redirect()Response.End()は、ページライフサイクルの実行を完全に停止する呼び出しを意味します。
Response.End()
したがって、コールバックメソッドで使用することはできません。代わりにクライアントメソッドを使用できますwindow.location.href = "...."
window.location.href = "...."