If both methods are provided, the implementation Disposeshould call Close. It is recommended that you use the using statement to ensure that, Disposeand therefore, Closeis called, even if there is an exception.
In other words:
using (Response response = ...)
{
}
Not this:
Response response = ...;
response.Close();
, ( ObjectDisposedException), Close .
, ASP.NET, Close Dispose Response.