tags:

views:

37

answers:

1

I imagine the SQL must pass 2 values, the value shown in the table and the link to which that value navigates.

I'd appreciate a pointer to the SQL Script for achieving this. Thanks.

+1  A: 

The format for a hyperlink column (field) is:

Description#Address#

For example:

This is StackOverflow#http://stackoverflow.com#
Mr E Xample#mailto:[email protected]#

For the most part, I prefer to avoid hyperlink fields (columns) as editing them is a real problem. A text or memo field with a little code is much simpler, though you will need a form.

Remou
Thanks for the solution.This is not critical (since I can use string functions to separate the two strings) but is it possible to use SQL to separate the Description from the Address (without using string functions) from C#?
aa2e72e
Outside of a control, not that I know of, but that is not saying much :)
Remou