Abort ASP.NET Request

  • Thread starter Thread starter Lucas Tam
  • Start date Start date
L

Lucas Tam

Quick Q... what's the command to abort an ASP.NET request?

I used the STOP command but this throws a JIT error - anything else to just
stop the request?

Thanks.
 
Quick Q... what's the command to abort an ASP.NET request?

I used the STOP command but this throws a JIT error - anything else to
just stop the request?

Thanks.


Nevermind... found it (had a brain freeze):

Response.End()
 
You may want to know that Response.End oes NOT abort the Request, but the
Response. A Request cannot be aborted, as it comes from a client.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top