Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can we add the extra http response header item example "Last Updated" beside the default response header?

example when I call (Request):
localHost:12345/API/GetInfo
with header:
Host: localHost:12345
......


then the api will reply the header with(Response):
HTTP/1.1 200 OK
Content-Length: XX
Content-Type: XXX
Last-Update: The value and the value generate from the API function

share|improve this question

1 Answer

up vote 3 down vote accepted

You can add header by using this code:

HttpContext.Current.Response.AppendHeader("Last-Update", value);
share|improve this answer
thanks bro. I Modified to HttpContext.Current.Response.AppendHeader("Last-Update", value); – Eng Boon Nov 21 '12 at 7:00
Oh, sorry, my mistake. I fixed my answer. You're weclome) – HoberMellow Nov 21 '12 at 7:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.