Ask a Question related to ASP.NET General, Design and Development.
-
Mike P #1
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
-
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. -
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... -
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 -
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 -... -
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... -
Ravikanth[MVP] #2
anchor question
Hi
Window title should be without spaces.
Ravikanth[MVP]
my window, but>-----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 ofOLI=" +>I'm not sure of the correct syntax :
>
><a href="#" onClick="window.open('<%# "oli_display.aspx?location=no, status=yes,>DataBinder.Eval(Container.DataItem, "OLI") + "&OS=" +
>DataBinder.Eval(Container.DataItem, "Incoming Route") %
>', 'title of
>window goes here', 'toolbar=no, directories=no,height=200')>>menubar=no, resizable=no, scrollbars=no, width=300,***><%#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



Reply With Quote

