Tuesday, July 1, 2014

HttpResponse.IsClientConnected - Performance Tips for ASP.NET Applications

Tip 4. HttpResponse.IsClientConnected

Before you start any large operation, make sure you check "Response.IsClientConnected"
if (Response.IsClientConnected)
{

// If client is still connected, then start your large operation here...

}


No comments:

Post a Comment

React-select is very slow on larger list - Found solution - using react-window

 I had more than 4000 items in searchable dropdownlist. I have used react-select but it was very slow. finally I found complete solution to ...