Forum Moderators: open
thanx
manju
As far as I'm aware you can only break the frameset down client side.
The easiest way I can think of doing this is to Response.Redirect to a page containing some JavaScript that breaks down the frameset
function destroyFrames()
{
window.top.location.replace("redirectedURL")
} This script could be generated server side to allow the redirectedURL to be placed dynamically.
I think thats clear!?