opening up a page in a new browser

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Des

    opening up a page in a new browser

    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.
  • =?Utf-8?B?UGV0ZXIgUml0Y2hpZSBbQyMgTVZQXQ==?=

    #2
    RE: opening up a page in a new browser

    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>

    --
    Browse http://connect.microsoft.com/VisualStudio/feedback/ and vote.

    Microsoft MVP, Visual Developer - Visual C#


    "Des" wrote:
    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.
    >

    Comment

    Working...