hyperlink

Dynamic SharePoint Navigation Link.

Inside of SharePoint under site settings >> look and feel >> Navigation you have the ability to throw down some link entries for navigation. My question is is there any simple way short of writing a feature, to somehow make the links dynamic so that they will append the query string of the current page that is being viewed? Edit: When y...

Registering an application to open specific web links

My question is the following: When using software such as Skype, TVU player or several other applications, it is possible to use weblinks specifically formatted for this application to launch it with certain parameters. For TVU for example a link on a web page could be: tvu://some-channel-id Clicking on this launches the application, ...

hyperlinking for image

Dear all, I am using javascript to specify the target link. It is not working properly. What change should I do in order for it to work correctly. My code: var link = create_element(cell, 'img'); link.setAttribute("src", "images/sub.png"); link.href = "http://localhost/"; Kindly help me ...

HTTPS causes Joomla to revert back to old Domain when creating links

Hello All, I have moved the website BradPPresents.com to BradP.com. URLS ARE NOT SAFE FOR WORK The website links properly on HTTP but as soon as it uses HTTPS the links revert back to BradPPresents.com. I assumed this was a Joomla! configuration.php file but it has already been changed to BradP.com. Also, all instances that I can ...

Turning information from a datasource into links

Hi, I have a web application where I am getting data from an oracle database in a gridview. Can anyone tell me how to turn this data into links to other pages on my web application? For example, if I am getting data about a list of objects that have their own ID, I want to be able to click the ID and go to a page with information on ...

How can one offer free ringtones on your web site?

I've been asked to come up with options to offer free ringtone downloads on a website. These would be actual free ringtone downloads, not "Sure, we've got free ringtones, but wouldn't you rather have these much cooler ringtones over here for $1.99?", but actual free-to-download ringtones. Is there a way to provide this in a relatively ...

Creating a single hyperlink from 2 mysql table entries using php

I have a mysql table containing the values for 'display' and 'link'. I'd like to pull these into a php file that displays the 'display' value which hyperlinks to the 'link' value I have already connected to the database and selected the appropriate rows to display, but I'm at a loss on how to create the php for this.. As you can prob...

MFC CLinkCtrl

How do you use CLinkCtrl? ...

Sharepoint - How to remove link from Javascript form within List

We have a sharepoint Aspx form that is formatted like an excel spreadsheet. On each row of the form are links that when clicked, launch a script to show new links, allowing the user to add, view, or hide comments. This will appear for each line item clicked on. We would like to remove the "add comment" link from the script, but cannot...

Geeky urls to Search Engine Friendly urls in IIS without sacrificing incoming links

I have a website where my present "geeky" urls look like: http://www.bestatdubaiholidays.co.uk/pages/Quote/Details.aspx?GUID=01a25b0c-e0ac-40ba-abd1-298f3abd9612 I want to change these to Search Engine Friendly ones - something like: http://www.bestatdubaiholidays.co.uk/the-palm-atlantis.aspx or http://www.bestatdubaihol...

How to deal with special characters in ASP.NET's HyperLink.NavigateUrl?

I am currently having troubles figuring out how to handle a filepath to be (dynamicly) passed out to a HyperLink control's NavigateUrl property. Let's say that I'm trying to refer to a file named jäynä.txt at the root of C:. Passing "file:///C:/jäynä.txt" result to a link to file:///C:/jäynä.txt, as does HttpUtility.UrlPathEncode("fil...

Automatically create email link from a static text

Hi, I'm trying to figure out how to automatically link the email addresses contained in a simple text from the db when it's printed in the page, using php. Example, now I have: Lorem ipsum dolor [email protected] sit amet And I would like to convert it (on the fly) to: Lorem ipsum dolor <a href="mailto:[email protected]">[email protected]</a> ...

How do you resolve a hidden javascript link with php?

Hi, I'm trying to parse a bunch of webpages one after the next with PHP, but I noticed that when I fopen the first page, the links to the following pages are hidden in javascript. Is there anyway I can continue on to parse the next webpages? If the url had a variable like "page=2" encrypted into it I would go through them that way, bu...

Using Div's instead of anchors

On my website, www.funpunks.com, in the top left of the page you'll see the navigation. I made this using fixed-size div's with background images, and using javascript to redirect "window.location = 'http://www.funpunks.com/' " etc. But what about for users who have thier javascript disabled etc? I think I need to use anchor tags. I ne...

ASP.NET DataGrid control disable - why doesn't this code work?

I have a DataGrid in ASP.NET 2.0 with the following column in it: <ASP:TEMPLATECOLUMN> <ItemStyle HorizontalAlign="Right"></ItemStyle> <ItemTemplate> <asp:HyperLink id="HyperLink1" runat="server" CssClass="DataGridCommand" Target="_blank" NavigateUrl='<%# GetPreviewURL(DataBinder.Eval(Containe...

Tool to parse text for possible Wikipedia links.

Does a tool exist that can parse text and output that text, hyper-linked to Wikipedia entries for words of interest? For example, I'd like a tool that could turn something like: The most popular search algorithm on a sorted list is the binary search. Into: The most popular search algorithm on a sorted list is the binary se...

Replace http:// in anchor portion of links using Jquery

Hi, on a page there a several links of: <a class="linked" href="http://link1.com&gt;http://link1.com&lt;/a&gt; <a class="linked" href="http://link2.com&gt;http://link2.com&lt;/a&gt; How would one remove the second http:// in each link so it can't be seen on the screen. I've tried this to no avail: $(document).ready(function() { $(...

Inline wrapping of hyperlink text in HTML anchor tag

I'm trying to find a way to allow really long text in an HTML link to wrap while containing the link in a compact rectangle. Essentially, I want this: with a really, really Here is some text long link that wraps and here is some more text. around in a rectangle Instead of: Here ...

Can I use jQuery to create a function that on click goes to a URL then executes a jQuery function on it?

Hello. I am not entirely sure if this is possible or not but so far you guys here at SO were always able to help me out so here it goes: The following website: www.bgarchitect.co.nz Has a navigation that works fine on the main page but (due to me making a mistake) does not work on the sub pages as it relies on images being loaded and ...

using hyperlink column in gridview and getting 'does not exist in the current context' error in page_load

HI, I have a HyperLink column in a gridview that when clicked should navigate the user to another page. I pass parameters to the page using a querystring. I am implemeting this action in the grid's onrowdatabound event. here is the code: HyperLink btnDetails = (HyperLink)ea.Row.FindControl("btnDetails"); btnDetai...