i have two frames on my page .on one frame i have to redirect values to other page but i want to open that page on parent page not in that frame.
i can use target in asp pages but how to use target with response.redirect in ASP.NET C#?
I’d recommend you to check out the following two links:
2, http://www.google.co.uk/search?q=response.redirect+target
Short answer–you can’t. Your ASP.NET page has little or no idea of the frame there.
The best bet is to create the change in javascript. If you must do it server-side, you can databind properties of your IFrame tag.