How to get MVC action to return 404

后端 未结 12 1804
日久生厌
日久生厌 2020-12-23 02:53

I have an action that takes in a string that is used to retrieve some data. If this string results in no data being returned (maybe because it has been deleted), I want to r

12条回答
  •  無奈伤痛
    2020-12-23 03:04

    In NerdDinner eg. Try it

    public ActionResult Details(int? id) {
        if (id == null) {
            return new FileNotFoundResult { Message = "No Dinner found due to invalid dinner id" };
        }
        ...
    }
    

提交回复
热议问题