hyperlink

How should I handle autolinking in wiki page content?

What I mean by autolinking is the process by which wiki links inlined in page content are generated into either a hyperlink to the page (if it does exist) or a create link (if the page doesn't exist). With the parser I am using, this is a two step process - first, the page content is parsed and all of the links to wiki pages from the so...

Easiest way to convert a URL to a hyperlink in a C# string?

I am consuming the Twitter API and want to convert all URLs to hyperlinks. What is the most effective way you've come up with to do this? from string myString = "This is my tweet check it out http://tinyurl.com/blah"; to This is my tweet check it out <a href="http://tinyurl.com/blah"&gt;http://tinyurl.com/&gt;blah&lt;/a&gt; ...

Find coordinates of every link in a page

In Javascript: How does one find the coordinates (x, y, height, width) of every link in a webpage? ...

How can I add an HyperLink in TRichEdit using Delphi

How can I add an HyperLink in a TRichEdit (using Delphi). I need to have something like: "This is my text, click here to do something." ...

How can I set the text of a WPF Hyperlink via data binding?

In WPF, I want to create a hyperlink that navigates to the details of an object, and I want the text of the hyperlink to be the name of the object. Right now, I have this: <TextBlock><Hyperlink Command="local:MyCommands.ViewDetails" CommandParameter="{Binding}">Object Name</Hyperlink></TextBlock> But I want "Object Name" to be bound t...

Windows .url links that point to same address when copied over or deleted

This is really annoying, we've switched our client downloads page to a different site and want to send a link out with our installer. When the link is created and overwrites the existing file, the metadata in windows XP still points to the same place even though the contents of the .url shows the correct address. I can change that URL p...

Insert a Link Using CSS

I'm hand-maintaining an HTML document, and I'm looking for a way to automatically insert a link around text in a table. Let me illustrate: <table><tr><td class="case">123456</td></tr></table> I would like to automatically make every text in a TD with class "case" a link to that case in our bug tracking system (which, incidentally, is ...

XML add <a> hyperlink

Hi, I have a xml blob that's checked against a schema in sql 2005. My website uses xsl to transform and display the blob. How do I add a hyperlink to the xml (in any node) without the sql 2005 schema complaining a node was found in the wrong place? Or the xsl thinking that the hyperlink is a valid xml node? thank you ...

CSS - Is there a way to get rid of the selection rectangle after clicking a link?

Is there a way to get rid of the selection rectangle when clicking a link which does not refresh the current page entirely? ...

How To change the HREF for a Hyperlink using jQuery

How can you change the href for a hyperlink using jQuery? ...

ASP.NET GridView CommandField Update/Cancel does not wrap

Hi. My question is on the ASP.NET GridView control. I am using a CommandField in the Columns tag as seen below. <asp:CommandField ShowEditButton="True" HeaderStyle-Width="40px" UpdateText="Save" ButtonType="Link" HeaderStyle-Wrap="true" ItemStyle-Wrap="true" ItemStyle-Width="40px"/> What renders is the shown in the following image ...

Is it possible to set a style of link that shows only when the linked webpage is being viewed?

Hi, I got a problem like this (this is html/css menu): Eshop | Another eshop | Another eshop Client wants it work like this: User comes to website, clicks on Eshop. Eshop changes to red color with red box outline. User decides to visit Another eshop, so Eshop will go back to normaln color without red box outline, and another eshop wi...

Best practice: How to track outbound links?

How do you track outbound links for your web sites, since the request is logged on the destination server, not yours? What method works best for an HTML site, a PHP or ASP.NET site, a template site, or a framework-based site? ...

asp.net hyperlnk control

Hi, Is it possible to call a class's static property to set the navigateurl property? <asp:HyperLink ID="hlRegister" NavigateUrl="<%= SomeClass.Property %>" runat="server" /> without using codebehind ofcourse! ...

Redirect to a link using the default broswser in Windows Form based application

I am not use: Process.Start (String, String) to open a link. But every time the browser open a new tab or new window to open the link. Is there a way that to open the link in the latest opened page? Just redirection, no new tab or new window? Thanks! ...

Find CorelDraw Web links

Does anyone know how to get the Web links in a CorelDraw document? I am using CorelDraw 13 X3 on Windows, and it comes with a Link manager and VBA. ...

Hyperlinks In Sharepoint Webpart

I've been working on a SharePoint project and I have gone the route of loading User Controls through a custom web part. I have several web controls where I need to dynamically generate hyperlinks (in a loop from a database) that will call certain functions of the User Control when clicked. When I'm building my own ASP.NET sites, I just...

Where can I find easy to understand information about Unicode?

Apart from Joel's article on the subject, where can I find information to help me get a deeper understanding of Unicode? ...

how can i use Hyperlink button in gridview ?

How can I use Hyperlink button in gridview. I mean when I run my program,all data is displayed in gridview,but I want hyperlink in gridview, so that when I will click in hyperlink it will show the select path which is in gridview : if there is pdf file path and I just click on this hyper link then I can see the pdf file. Can you tell me...

Changing the color of a selected link that is embedded in a table.

Hi, I'm trying to use class names to change the color of a link after it has been selected, so that It will remain the new color, but only until another link is selected, and then it will change back. I'm using this code that was posted by Martin Kool in this question: <html> <head> <script> document.onclick = function(evt) { ...