Your code is trying to print Response.End on the page.
You can simply write (in your code block)
return;
to stop the execution of the generated Execute () method.
You can also call End as a method inside your code block:
Response.End();
SLaks
source share