How to get MVC action to return 404

后端 未结 12 1816
日久生厌
日久生厌 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:26

    Please try the following demo code:

    public ActionResult Test()
    
    {
      return new HttpStatusCodeResult (404,"Not found");
    }
    

提交回复
热议问题