|
Rank: Member Groups: Member
Joined: 12/8/2009 Posts: 26
|
Hi There,
I am testing the flyout control and all is looking great but I cannot get a simple hyperlink to work. I am just calling a mailto:me@myCompany.com but it does not work. This is the code:
<%@ Control Language="VB" AutoEventWireup="true" CodeFile="Postage.ascx.vb" Inherits="_Postage" %> <div style="border: solid 1px #404040; padding: 5px; background-color:White;">
<div style="width:762px; font-family:Arial; font-size:12px !Important"> <strong>POSTAGE AND DELIVERY</strong> <ul> <li>Postage costs stated are for orders within the UK only (excluding Channel Islands)</li> <li>Postage charged at published Royal Mail Standard Parcel Rate</li> <li>Please allow 5-7 working days for delivery</li> <li>Please <a Style=" text-decoration:none" href="mailto:contactus@mycompany.com">contact us</a> if you wish to order goods from outside the UK, and we will calculate the relevant shipping cost for you.</li> </ul> </div>
Any Ideas?
Best Regards,
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi, Please try the following code:
Code: HTML/ASPX
<ContentTemplate>
<div onmousedown="eo_CancelBubble(event);">
....put your original contents here...
</div>
</ContentTemplate>
Note the additional div around your original content. You can also update to the latest build (.22) from our download page. That build will automatically do this for you. Thanks!
|
|
Rank: Member Groups: Member
Joined: 12/8/2009 Posts: 26
|
Hi Support,
Thanks for your help and the code snippet.
I am using the latest build and it was not working. (Dll Version: 8.0.20.2) I have applied your code snippet and it works now so I do not think that your new build does it automatically. This is how my code looks now.
<%@ Control Language="VB" AutoEventWireup="true" CodeFile="Postage.ascx.vb" Inherits="_Postage" %> <div style="border: solid 1px #404040; padding: 5px; background-color:White;"> <div onmousedown="eo_CancelBubble(event);" style="width:762px; font-family:Arial; font-size:12px !Important"> <strong>POSTAGE AND DELIVERY</strong> <ul> <li>Postage costs stated are for orders within the UK only (excluding Channel Islands)</li> <li>Postage charged at published Royal Mail Standard Parcel Rate</li> <li>Please allow 5-7 working days for delivery</li> <li>Please <a Style=" text-decoration:none" href="mailto:contactus@mycompany.com">contact us</a> if you wish to order goods from outside the UK, and we will calculate the relevant shipping cost for you.</li> </ul> </div>
Best Regards.
Steve.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
I believe the latest build is 8.0.22.2, not 8.0.20.2.
Thanks
|
|
Rank: Member Groups: Member
Joined: 12/8/2009 Posts: 26
|
Hi administrator, Thanks for your reply.
I purchased and downloaded the new version 2 days ago, has there been a new build since then?
Best Regards,
Steve.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
Please always check the download page for the latest build.
Thanks!
|
|