i have a home page that is a frameset composed of two frames. the bottom frame is an asp page that includes the ability to login. if the login is successful, i want to use response.redirect to replace the current frameset with a new frameset. if the login is not successful, i want the asp login page to reload in the current frame with an appropriate message.
my problem is that there are two potential targets for the next page and i don't know how to specify a different target. i can use the html <base target="_self">, but then if the login is successful, the new frameset gets loaded within the current frameset. likewise, i can use the html <base target="_top">, but then if the login is not successful, the login page gets loaded on top of the existing frameset.
the simple solution would be if i could specify the target using response.redirect, but my understanding is that asp's response.redirect doesn't have that capability. any ideas on how to resolve this problem?
thanks,
glenn
my problem is that there are two potential targets for the next page and i don't know how to specify a different target. i can use the html <base target="_self">, but then if the login is successful, the new frameset gets loaded within the current frameset. likewise, i can use the html <base target="_top">, but then if the login is not successful, the login page gets loaded on top of the existing frameset.
the simple solution would be if i could specify the target using response.redirect, but my understanding is that asp's response.redirect doesn't have that capability. any ideas on how to resolve this problem?
thanks,
glenn