I all, my present asp page opens a popup to display the complete data, but my requirement is to create a login to show only some data in the same popup. my choice was to redirect from the popup that shows all data to a new popup which shows some data (having the first popup not opening at all, clearly to redirect) Any help how to redirect from popup to popup..?
How about checking who is viewing your page prior to sending -any- pop-up at all, and then conditionally sending them the right pop-up. I could see things getting quickly complicated if pop-ups attempt to open each other after having already been requested in an attempt to implement security. pseudocode: On event that generates popup... if user is logged in (or if user belongs to a specific role) give them the full data popup else give them the sucky data popup Or within the popup generator itself If logged in generate legit popup else generate slim popup
I used response.redirect and it works perfect.(the first popup doesnt open at all) thanks for replying.