Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default anchor question

    What is wrong with this code? I have a link on my page :

    <a href='<%# "oli_display.aspx?OLI=" +
    DataBinder.Eval(Container.DataItem, "OLI") + "&OS=" +
    DataBinder.Eval(Container.DataItem, "Incoming Route") %>'
    target="_blank">

    <%#DataBinder.Eval(Container.DataItem, "OLI") %>
    </a>

    I have changed this so that I can set the properties of my window, but
    I'm not sure of the correct syntax :

    <a href="#" onClick="window.open('<%# "oli_display.aspx?OLI=" +
    DataBinder.Eval(Container.DataItem, "OLI") + "&OS=" +
    DataBinder.Eval(Container.DataItem, "Incoming Route") %>', 'title of
    window goes here', 'toolbar=no, directories=no, location=no, status=yes,
    menubar=no, resizable=no, scrollbars=no, width=300, height=200')>
    <%#DataBinder.Eval(Container.DataItem, "OLI") %>
    </a>


    Any assistance would be much appreciated.


    Cheers,

    Mike



    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Mike P Guest

  2. Similar Questions and Discussions

    1. anchor points disappeared! newbie question
      This is probably a simple thing but help! My anchor points have disappeared! I see bounding boxes but nor anchor points. Please help.
    2. URL/Anchor bug in IE
      On IE, when redirecting to a page with an anchor at the end, the CF page will crash. What it's basically doing is using the last variable value...
    3. Anchor property
      I would like to know why don't we have an anchor property for Web Controls and how can we incorporate it through code in ASP.NET
    4. Anchor Tag Help w/PHP
      I'm using PHP and while this is an HTML question, I'm looking for a PHP answer please - I've got several anchors similar to the one shown below -...
    5. Question about encapsulating PHP script inside an anchor
      Here's an interesting problem - On one of my pages, I have a place where a user can download a ZIP file by clicking on the phrase "Click to...
  3. #2

    Default anchor question

    Hi

    Window title should be without spaces.

    Ravikanth[MVP]

    >-----Original Message-----
    >What is wrong with this code? I have a link on my page :
    >
    ><a href='<%# "oli_display.aspx?OLI=" +
    >DataBinder.Eval(Container.DataItem, "OLI") + "&OS=" +
    >DataBinder.Eval(Container.DataItem, "Incoming Route") %>'
    >target="_blank">
    >
    ><%#DataBinder.Eval(Container.DataItem, "OLI") %>
    > </a>
    >
    >I have changed this so that I can set the properties of
    my window, but
    >I'm not sure of the correct syntax :
    >
    ><a href="#" onClick="window.open('<%# "oli_display.aspx?
    OLI=" +
    >DataBinder.Eval(Container.DataItem, "OLI") + "&OS=" +
    >DataBinder.Eval(Container.DataItem, "Incoming Route") %
    >', 'title of
    >window goes here', 'toolbar=no, directories=no,
    location=no, status=yes,
    >menubar=no, resizable=no, scrollbars=no, width=300,
    height=200')>
    ><%#DataBinder.Eval(Container.DataItem, "OLI") %>
    > </a>
    >
    >
    >Any assistance would be much appreciated.
    >
    >
    >Cheers,
    >
    >Mike
    >
    >
    >
    >*** Sent via Developersdex [url]http://www.developersdex.com[/url]
    ***
    >Don't just participate in USENET...get rewarded for it!
    >.
    >
    Ravikanth[MVP] Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139