Is it possible to send the page using Response.Redirect() to the target="_top" or anything else for that matter instead of just SELF?
Thanks
Nope. Response.Redirect tells the client browser to display another page. It does this by sending a HTTP Status code of 302 and the new url to go to.
We still have use javascript to send it to the parent target frame?
Yes. Javascript would work.