I am using a custom HttpHandler to process requests like: www.sitename.com/siteOwner
in processRequest, I have logic to redirect customer to siteOwner's site.
Once customer is re-directed to owner's site, I dont want process request to take any action. so I created a flag.. and in else condition i.e.
if (flg==false)
// don't do anything .. i didnot write any code..
but my page does not go anywhere!! Why is this happening?