asp.net - How can I assign an href to be embedded within a tag? -


an href's target attribute can set display on separate page assigning "_blank" it; e.g., in site www.duckbilledplatypirus.org, link site way:

<a href="http://www.bigsurgarrapata.com" target="_blank">garrapata</a> 

if leave target attribution out, href'd site replaces existing site on browser's current page.

but want have page/site display, not in user's browser per se, embedded within site, in 1 of tags; in case, inside contents of accordion "fold." tried work way:

<div id="accordion">     <h3>garrapata</h3>     <div id="garrapatafold"><a href="http://www.bigsurgarrapata.com" target="#garrapatafold">big sur garrapata site</a></div> 

iow, it's targeting itself; doesn't work; acts if had assigned "_blank" href's target attribute.

so going wrong, or close don't know value assign target attribute?

this works well:

<div><iframe src="http://www.bigsurgarrapata.com" width="100%" height="100%"></iframe></div> 

...for part; not allows "confined" way; flicker shows errror message, don't allow such, , netflix takes on browsing session.


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -