Link to home
Start Free TrialLog in
Avatar of vikas_nm
vikas_nmFlag for India

asked on

IFrame src

Hi Experts,
I have 2 IFRAME in my asp.net page. In first IFRame there is a page which contains  some hyperlinks to pages. Now when the user clicks on that hyper links then in the second Iframe the page should get loaded.

How can i do this in asp.net.
Avatar of maeltar
maeltar
Flag of United Kingdom of Great Britain and Northern Ireland image

If I remember correctly don't you just set the target of the link to the name of the iframe ?


<iframe name=blah>
</iframe>

your link should target that name

<a href="http://www.yahoo.com" target="blah">
ASKER CERTIFIED SOLUTION
Avatar of Eyal
Eyal
Flag of Israel image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of vikas_nm

ASKER

thanks