How to generate an 401 error programmatically in an ASP.NET page

后端 未结 5 1383
无人及你
无人及你 2020-12-08 02:29

As you can see this is a question from a non web developer. I would like to have an ASPX page which, under certain circumstances, can generate a 401 error from code. Ideally

5条回答
  •  伪装坚强ぢ
    2020-12-08 02:48

    You should be able to just use the following, according to MSDN.

    Throw New HttpException(401, "Auth Failed")
    

    Edit After seeing the other responses setting the status code would be more appropriate.

提交回复
热议问题