c# - Prevent VS debugger from time out -
i have debug asp.net page takes several minutes execute. problem visual studio internal dev server debugger (i using vs2012) times out before page execution finishes.
is there way fix problem? please note not want vstudio attach iis. want know if there way configure internal web development server.
thanx in advance!
(thanks slaks edit)
my cheap, dirty answer send data page during operation. serve keep connection alive appear timing out @ browser level.
to handle issue break operation multiple steps:
- myservice.beginoperation()
- myservice.updateoperation()
- myservice.endoperation()
where client call methods asynchronously determine application state.
Comments
Post a Comment