In an ASP.NET application, in order to be safe, it is necessary to use only for registered user services, and the non-registered user will reject the service, while returning to the HTTP status code prompts non-registered users do not exist. After reviewing the relevant information, find the following ways to resolve: ... response.statuscode = 400; // does not exist response.end (); return; ......