i need know if response.clear()
clear content or remove headers? in other word if use response.clear()
, need use response.clearheader()
or not ?
as msdn says
the clear method erases buffered html output. however, clear method erases response body; not erase response headers.
to clear header use response.clearheaders();
Comments
Post a Comment