当前位置 : 主页 > 网络编程 > ASP >

asp.net – HTTP状态代码

来源:互联网 收集:自由互联 发布时间:2021-06-24
如何从HttpStatusCode的对象获取HTTP状态代码id(在ASP.NET中? 例如,我得到“HttpStatusCode.NotFound”我想得到错误代码404. 只需将其转换为int: HttpStatusCode statusCode = HttpStatusCode.NotFound;int codeAsIn
如何从HttpStatusCode的对象获取HTTP状态代码id(在ASP.NET中?
例如,我得到“HttpStatusCode.NotFound”我想得到错误代码404. 只需将其转换为int:

HttpStatusCode statusCode = HttpStatusCode.NotFound;
int codeAsInteger = (int)statusCode;

现在codeAsInteger是404.

网友评论