redirect and target problem?

  • Thread starter Thread starter Cantekin Guneser
  • Start date Start date
C

Cantekin Guneser

in my project i am using framesets, at the left frame set notmally i am
using hiperlink element with target to redirect main frame this is ordinary,
but now i need to redirect main frame with dynamic text from dropdownlist
and textbox,
i tried like response.redirect("search.aspx?city="+ddl_city.selectedtext)
but with this i can not redirect the main frame it redirects left frame
again.
i want to manupulate main frame from left frame with querystring that
comes fram dropdownlists and text box

thanks in advance for any help or idea
 
Hi,

This has nothign to do with .NET , it's pure javascript, you need to do it
on the client, in the onClick event of the button that you are using put
something like window.top.location = "URL";

Cheers,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Frames Redirection 5
This should be easy, but... 1
Problem with target frame 1
Target Frame 2
Prob with frames 1
Problems with frameset 2
XHTML & frames 1
Interesting problem with session state...help? 2

Back
Top