MVCのページをリダイレクトまたはリフレッシュせずにエラーを処理する方法はありますか?MVCでリダイレクト&ページリフレッシュを伴わないハンドルエラー
実際、私のView.cshtmlにはいくつかのタグがあり、ページをリダイレクトして更新することなく、特定のエラーを処理してエラーを処理したいと思います。私は実際にエラーを警告したい。
次は私のJavaScriptのコードスニペットです:ここで
fn_GetData: function() {
$('#frm4').attr('action', 'my url goes here').attr('method', 'post');
$('#div4').html('<input type="hidden" name="p" value="' + 'some value goes here' + '"/> ');
$('#frm4').submit();
}
は私のコントローラのアクションコードです:
public ActionResult GetData(string p)
{
var error = false;
// Some logic goes here...
if (error)
{
TempData["Result"] = "My error message goes here";
// I don't know how to alert the above error message without having to redirect or refresh the page.
}
}