opening up a page in a new browser

D

Des

Can anyone tell me how to open up a page in a new browser. The
exsisting code is.....


<a href="01.aspx"><img src="Images/3.14.jpg"
width="191" height="180" alt="" /></a>
<a href="02.aspx"><img src="Images/3.16.jpg"
width="191" height="180" alt="" /></a>
<a href="03.aspx"><img src="Images/2.8.jpg"
width="191" height="180" alt="" /></a>
<a href="04.aspx"><img src="Images/2.3.jpg"
width="191" height="180" alt="" /></a>


Tia

Desmond.
 
P

Peter Ritchie [C# MVP]

Use the target attribute. For example:
<a href="01.aspx"><img src="Images/3.14.jpg"> width="191" height="180"
alt="" target="_blank" />link</a>
 

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


Top