我将此部分添加到web.config,以显示500和404错误的自定义错误。
<httpErrors errorMode="Custom" existingResponse="Replace">
<clear/>
<error statusCode="500" responseMode="ExecuteURL" path="/CustomError/ServerError" />
<error statusCode="404" responseMode="ExecuteURL" path="/CustomError/NotFound" />
</httpErrors>
我想手动将某些页面的状态代码设置为423'业务要求',我的问题如何才能通过特定的状态码?
提前致谢。