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.
xlsx無料のライブラリを使用してDBにファイルをアップロードしていますEPPlus。これは正常に機能し、アップロードはデータベースに表示されます。「 」や「」 などのアップロード状況を確認したいのですが。upload successfullupload failed
xlsx
EPPlus
upload successfull
upload failed
これを行う方法はありますか?
私は私の悪い英語をはっきりと申し訳なく思っていることを願っています
ファイルのアップロード方法によって異なります。ajax 経由でない場合は、成功または失敗に応じてリダイレクトできます。
try { // Code to process upload Response.Redirect("/success.aspx"); } catch (Exception) { Response.Redirect("/failure.aspx"); }