What is meant by HTTP Status Response Code 205 Reset Content | HTTP Tutorial | HTTP Interview Question

The server has fulfilled the request and the user agent SHOULD reset the document view which caused the request to be sent. This response is primarily intended to allow input for......

Read More

What is meant by HTTP Status Response Code 206 Partial Content | HTTP Tutorial | HTTP Interview Question

The server has fulfilled the partial GET request for the resource. The request MUST have included a Range header field indicating the desired range, and MAY have included an If-Range......

Read More

What is meant by HTTP Status Response Code 204 No Content | HTTP Tutorial | HTTP Interview Question

The server has fulfilled the request but does not need to return an entity-body, and might want to return updated meta information. The response MAY include new or updated meta information in the form of entity-headers, which if present SHOULD be associated with the requested variant.

If the client is a user agent, it SHOULD NOT change its document view from that which caused the request to be sent. This response is primarily intended to allow input for actions to take place without causing a change to the user agent's active document view, although any new or updated meta information SHOULD be applied to the document currently in the user agent's active view.

The 204 response MUST NOT include a message-body, and thus is always terminated by the first empty line after the header fields.

Purpose of HTTP Status Code 203 Non-Authoritative Information | HTTP Tutorial | HTTP Interview Question

The returned metainformation in the entity-header is not the definitive set as available from the origin server, but is gathered from a local or a third-party copy. The set presented MAY be a subset or superset of the original version. For example, including local annotation information about the resource might result in a superset of the metainformation known by the origin server. Use of this response code is not required and is only appropriate when the response would otherwise be 200 (OK)

Purpose of HTTP Status Code 202 Accepted? | HTTP Tutorial | HTTP Interview Question

The request has been accepted for processing, but the processing has not been completed. The request might or might not eventually be acted upon, as it might be disallowed when processing......

Read More

Purpose of HTTP Status Code 201 Created? | HTTP Tutorial | HTTP Interview Question

The request has been fulfilled and resulted in a new resource being created. The newly created resource can be referenced by the URI(s) returned in the entity of the response, with......

Read More

Purpose of HTTP Status Code 200 OK ? Types of Response with 200 OK HTTP Status Code | HTTP Tutorial | HTTP Interview Question

The request has succeeded. The information returned with the response is dependent on the method used in the request, for example: GET an entity corresponding to the requested resource......

Read More

Purpose of HTTP Status Code 101 Switching Protocols? | HTTP Tutorial | HTTP Interview Question

The server understands and is willing to comply with the client's request, via the Upgrade message header field, for a change in the application protocol being used on this connection.......

Read More

Purpose of HTTP Status Code 100 Continue ? | HTTP Tutorial | HTTP Interview Question

The client SHOULD continue with its request. This interim response is used to inform the client that the initial part of the request has been received and has not yet been rejected......

Read More

Informational 1xx HTTP Status Code Explained | HTTP Tutorial

This class of status code indicates a provisional response, consisting only of the Status-Line and optional headers, and is terminated by an empty line. There are no required headers......

Read More

What are the ASP.NET default handlers? | ASP.Net Interview Question | ASP.NET Programmer Guide

, ,

ASP.NET default handlers:         1.Page Handler (.aspx) - Handles Web pages        2.User Control Handler......

Read More

What is HTTP handler? | ASP.Net Interview Question | ASP.NET Programmer Guide

, ,

                Every request into an ASP.NET application is handled by a specialized component known as an HTTP handler. The HTTP handler......

Read More

What is Mean by Cross-Origins and Same-Origins? | HTTP Interview Question

, ,

Two URLs have the same origin if they have identical schemes, hosts, and ports. (RFC 6454) These two URLs have the same origin: http://example.com/foo.html http://example.com/bar.html These......

Read More

Explain HTTP Request? | ASP.Net Web API Interview Question | ASP.Net Web API Programmer Guide | HTTP Programmer Guide

,

An HTTP request has the request line as the first line of the request. The request line starts with the HTTP method followed by a space, followed by the URI of the resource requested,......

Read More