Ask a Question related to Macromedia Director Basics, Design and Development.

  1. #1

    Default Hyperlink Problem

    I am trying to provide a hyperlink to a pdf file. I have followed the
    directions in the help file, but when the site is uploaded, there is no
    link there. Suggestions?

    Jane Schneeloch Guest

  2. Similar Questions and Discussions

    1. Hyperlink problem - many links, but same URL
      I'm having a problem doing something that seems very simple. I'm using InDesign CS2. I am trying to create a PDF document, built in InDesign and...
    2. Problem with Paging and Parameter passing using Hyperlink Column @ DATAGRID
      Hey, I have a Problem in implementation. I need to desing something like this, its all about reporting applications for bachelor program in...
    3. Problem w/ pic hyperlink
      SO.. I hyperlinked some thumbnails.. wrote each path name for the pic accordingly to its file name ex) http://www.shannondavies.ca/images/1421.jpeg...
    4. Weird Hyperlink problem
      Hi, Has anyone every had the problem where some rows have the hyperlinks working and some don't? I have a dg that I've bound to a dynamically...
    5. Dynamically Hyperlink and Event Handler for the Hyperlink ?
      Hi, I´m creating an Hyperlink dynamically for my DataGrid: HyperLink hl = new HyperLink(); hl.Text = "MyLink"; hl.NavigateUrl = "#";...
  3. #2

    Default HYPERLINK PROBLEM

    Why is hyperlink not working?

    I tried to do the same like below:

    To define a hypertext link:

    1.
    Select the text you want to define as a hypertext link.

    2.
    Select Window > Text Inspector to open the Text inspector.

    3.
    In the Hyperlink text box, enter the URL to which you want to link, or enter any message you want to send to the on hyperlinkClicked handler. Then press Enter (Windows) or Return (Macintosh).



    The selected text gets the hyperlink format and also shows handcursor, but when i click it, it doesnt open the link page.

    Any solution.
    Priya Guest

  4. #3

    Default Re: HYPERLINK PROBLEM

    Did you read up on the 'on hyperlinkClicked handler? The data you put in the
    text inspector is sent into that handler - you then need to do something
    with it... It doesn't do anything automatically.

    Dave


    Dave Mennenoh Guest

  5. #4

    Default Hyperlink problem

    Hi all.
    I use a text member with Hyperlinks in it, and i use the on
    Hyperlinkclicked to manage the links. The problem is that this
    function is not called.
    The only way to get it called is to put a
    member(mymemeber).media=member(mymemeber).media, but this is too slow.
    Why Director can't work as it should? Is there anything I can do?
    Roberto Guest

  6. #5

    Default Hyperlink problem

    I am trying to create a URL hyperlink in an InDesign 3.0 document that is being converted to PDF. I'd like to be able to click on the text in the PDF and have it open the the URL automatically in Explorer.

    What I've done is highlighted the text <http://www.myurl.com>, chose new hyperlink from URL, double checked the hyperlink destination ([url]http://www.myurl.com[/url]) but when I print to PDF and I try clicking on the text with the hand tool nothing happens. I was forced to create my hyperlink using Adobe Acrobat.

    Anyone know why this is happening?
    Gabriel_Ayala@adobeforums.com Guest

  7. #6

    Default Re: Hyperlink problem

    To preserve hyperlinks, you must export to PDF, choosing to Include Hyperlinks. If there is transparency on your page, you must choose Acrobat 5 or 6 compatibility.
    Steve_Werner@adobeforums.com Guest

  8. #7

    Default Re: Hyperlink problem

    Check you didn't include any trailing spaces when you selected the text.
    It's easy to do, but makes nonsense of the hyperlink.

    k


    Ken_Grace@adobeforums.com Guest

  9. #8

    Default Hyperlink problem

    I am sure that there is a simple answer to this, but i have not been able to
    find it.

    I have a hyperlink column to send the user to an external webpage.
    But when it is clicked it appends the URL to the current URL

    i.e

    [url]http://www.mywebsite.com/datapage.aspx#http://www.externalwebsite.com[/url]

    Thanks for any help you can give

    Andrew


    ---
    Outgoing mail is certified Virus Free.
    Checked by AVG anti-virus system ([url]http://www.grisoft.com[/url]).
    Version: 6.0.711 / Virus Database: 467 - Release Date: 25/06/2004


    andrew sargent Guest

  10. #9

    Default Re: Hyperlink problem

    Hi Andrew,

    It sounds like you are binding to the wrong field or concatenating
    something. Perhaps you could post the troublesome code? Here's some example
    code:

    Dim dt As DataTable
    Private Sub Page_Load _
    (ByVal sender As System.Object, _
    ByVal e As System.EventArgs) _
    Handles MyBase.Load
    If Not IsPostBack Then
    DataGrid1.DataSource = CreateDataSource()
    DataGrid1.DataBind()
    End If
    End Sub



    Function CreateDataSource() As ICollection

    ' Create sample data for the DataList control.
    dt = New DataTable
    Dim dr As DataRow

    ' Define the columns of the table.
    dt.Columns.Add(New DataColumn("Item", GetType(String)))
    dt.Columns.Add(New DataColumn("Qty", GetType(Int32)))
    dt.Columns.Add(New DataColumn("Price", GetType(Double)))

    ' Populate the table with sample values.
    Dim i As Integer

    For i = 0 To 8
    dr = dt.NewRow()
    dr(0) = "http://mydomain/Item" & i.ToString & ".aspx"
    dr(1) = i * 2
    dr(2) = 1.23 * (i + 1)
    dt.Rows.Add(dr)
    Next i

    Dim dv As DataView = New DataView(dt)
    Return dv
    End Function


    <form id="Form1" method="post" runat="server">
    <asp:DataGrid id="DataGrid1" runat="server">
    <Columns>
    <asp:HyperLinkColumn Target="_blank" DataNavigateUrlField="Item"
    DataTextField="Price" HeaderText="Link"></asp:HyperLinkColumn>
    </Columns>
    </asp:DataGrid>
    <P>&nbsp;</P>
    <P>
    <asp:Label id="Label1" runat="server">Label</asp:Label></P>
    </form>

    Ken
    Microsoft MVP [ASP.NET]
    Toronto

    "andrew sargent" <as@nospam.com> wrote in message
    news:rt_Dc.289$gn6.255@fe2.news.blueyonder.co.uk.. .
    >I am sure that there is a simple answer to this, but i have not been able
    >to
    > find it.
    >
    > I have a hyperlink column to send the user to an external webpage.
    > But when it is clicked it appends the URL to the current URL
    >
    > i.e
    >
    > [url]http://www.mywebsite.com/datapage.aspx#http://www.externalwebsite.com[/url]
    >
    > Thanks for any help you can give
    >
    > Andrew
    >
    >
    > ---
    > Outgoing mail is certified Virus Free.
    > Checked by AVG anti-virus system ([url]http://www.grisoft.com[/url]).
    > Version: 6.0.711 / Virus Database: 467 - Release Date: 25/06/2004
    >
    >
    Ken Cox [Microsoft MVP] Guest

  11. #10

    Default Re: Hyperlink problem

    OK, here goes:


    <%@ Page Language="VB" %>
    <script runat="server">

    Sub Page_Load (sender As Object, e As EventArgs)

    dgNews.Datasource = GetNews()
    dgNews.DataBind()

    End Sub


    Function GetNews() As System.Data.IDataReader
    Dim connectionString As String =
    "Provider=Microsoft.Jet.OLEDB.4.0; Ole DB Services=-4; Data
    Source=xxxxxxxxxxxxxxxxxxxxxx"
    Dim dbConnection As System.Data.IDbConnection = New
    System.Data.OleDb.OleDbConnection(connectionString )

    Dim queryString As String = "SELECT [news].[Title],
    [news].[Text], [news].[URL], [news].[Date] FROM [news]"
    Dim dbCommand As System.Data.IDbCommand = New
    System.Data.OleDb.OleDbCommand
    dbCommand.CommandText = queryString
    dbCommand.Connection = dbConnection

    dbConnection.Open
    Dim dataReader As System.Data.IDataReader =
    dbCommand.ExecuteReader(System.Data.CommandBehavio r.CloseConnection)

    Return dataReader
    End Function

    </script>
    <html>
    <head>
    </head>
    <body>
    <form runat="server">

    <asp:DataGrid id="dgNews" runat="server"
    AutoGenerateColumns="False" HorizontalAlign="Left" BorderStyle="None"
    GridLines="Horizontal" BorderWidth="1px" BorderColor="#E7E7FF"
    BackColor="White" CellPadding="3">
    <FooterStyle forecolor="#4A3C8C"
    backcolor="#B5C7DE"></FooterStyle>
    <HeaderStyle font-bold="True" forecolor="#F7F7F7"
    backcolor="#4A3C8C"></HeaderStyle>
    <PagerStyle horizontalalign="Right" forecolor="#4A3C8C"
    backcolor="#E7E7FF" mode="NumericPages"></PagerStyle>
    <SelectedItemStyle font-bold="True" forecolor="#F7F7F7"
    backcolor="#738A9C"></SelectedItemStyle>
    <AlternatingItemStyle
    backcolor="#F7F7F7"></AlternatingItemStyle>
    <ItemStyle forecolor="#4A3C8C"
    backcolor="#E7E7FF"></ItemStyle>
    <Columns>
    <asp:BoundColumn DataField="Date"
    ReadOnly="True"></asp:BoundColumn>
    <asp:BoundColumn DataField="Title"></asp:BoundColumn>
    <asp:BoundColumn DataField="Text"></asp:BoundColumn>
    <asp:HyperLinkColumn Text="more" Target="_self"
    DataNavigateUrlField="URL"></asp:HyperLinkColumn>
    </Columns>
    </asp:DataGrid>
    </font>
    </p>
    <!-- Insert content here -->
    </form>
    </body>
    </html>


    cheers


    "Ken Cox [Microsoft MVP]" <BANSPAMken_cox@sympatico.ca> wrote in message
    news:eQLcNuVXEHA.3988@tk2msftngp13.phx.gbl...
    > Hi Andrew,
    >
    > It sounds like you are binding to the wrong field or concatenating
    > something. Perhaps you could post the troublesome code? Here's some
    example
    > code:
    >
    > Dim dt As DataTable
    > Private Sub Page_Load _
    > (ByVal sender As System.Object, _
    > ByVal e As System.EventArgs) _
    > Handles MyBase.Load
    > If Not IsPostBack Then
    > DataGrid1.DataSource = CreateDataSource()
    > DataGrid1.DataBind()
    > End If
    > End Sub
    >
    >
    >
    > Function CreateDataSource() As ICollection
    >
    > ' Create sample data for the DataList control.
    > dt = New DataTable
    > Dim dr As DataRow
    >
    > ' Define the columns of the table.
    > dt.Columns.Add(New DataColumn("Item", GetType(String)))
    > dt.Columns.Add(New DataColumn("Qty", GetType(Int32)))
    > dt.Columns.Add(New DataColumn("Price", GetType(Double)))
    >
    > ' Populate the table with sample values.
    > Dim i As Integer
    >
    > For i = 0 To 8
    > dr = dt.NewRow()
    > dr(0) = "http://mydomain/Item" & i.ToString & ".aspx"
    > dr(1) = i * 2
    > dr(2) = 1.23 * (i + 1)
    > dt.Rows.Add(dr)
    > Next i
    >
    > Dim dv As DataView = New DataView(dt)
    > Return dv
    > End Function
    >
    >
    > <form id="Form1" method="post" runat="server">
    > <asp:DataGrid id="DataGrid1" runat="server">
    > <Columns>
    > <asp:HyperLinkColumn Target="_blank" DataNavigateUrlField="Item"
    > DataTextField="Price" HeaderText="Link"></asp:HyperLinkColumn>
    > </Columns>
    > </asp:DataGrid>
    > <P>&nbsp;</P>
    > <P>
    > <asp:Label id="Label1" runat="server">Label</asp:Label></P>
    > </form>
    >
    > Ken
    > Microsoft MVP [ASP.NET]
    > Toronto
    >
    > "andrew sargent" <as@nospam.com> wrote in message
    > news:rt_Dc.289$gn6.255@fe2.news.blueyonder.co.uk.. .
    > >I am sure that there is a simple answer to this, but i have not been able
    > >to
    > > find it.
    > >
    > > I have a hyperlink column to send the user to an external webpage.
    > > But when it is clicked it appends the URL to the current URL
    > >
    > > i.e
    > >
    > > http://www.mywebsite.com/datapage.aspx#http://www.externalwebsite.com
    > >
    > > Thanks for any help you can give
    > >
    > > Andrew
    > >
    > >
    > > ---
    > > Outgoing mail is certified Virus Free.
    > > Checked by AVG anti-virus system (http://www.grisoft.com).
    > > Version: 6.0.711 / Virus Database: 467 - Release Date: 25/06/2004
    > >
    > >
    >

    ---
    Outgoing mail is certified Virus Free.
    Checked by AVG anti-virus system (http://www.grisoft.com).
    Version: 6.0.711 / Virus Database: 467 - Release Date: 25/06/2004


    andrew sargent Guest

  12. #11

    Default Re: Hyperlink problem

    Hi Andrew,

    Hi had to rejig your code to use the Nwind database. You seem to be using
    some strange interfaces which I changed. Not sure what's the reason.

    Try this to see how you do?

    Ken
    Microsoft MVP [ASP.NET]


    <%@ Page Language="VB" %>
    <%@ import namespace="system.data" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
    "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

    <script runat="server">
    Sub Page_Load(ByVal sender As Object, _
    ByVal e As System.EventArgs)
    If Not IsPostBack Then
    dgNews.DataSource = GetNews()
    dgNews.DataBind()
    End If
    End Sub

    Function GetNews() As _
    System.Data.OleDb.OleDbDataReader
    Dim connectionString As String = _
    "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & _
    Server.MapPath("data/nwind.mdb")
    Dim dbConnection As System.Data.OleDb.OleDbConnection = _
    New System.Data.OleDb.OleDbConnection(connectionString )
    Dim queryString As String = "SELECT * from employees "
    ' Dim queryString As String = "SELECT [news].[Title],
    [news].[Text], [news].[URL], [news].[Date] FROM [news] "
    Dim dbCommand As System.Data.OleDb.OleDbCommand = _
    New System.Data.OleDb.OleDbCommand()
    dbCommand.CommandText = queryString
    dbCommand.Connection = dbConnection
    dbConnection.Open()
    Dim dataReader As System.Data.OleDb.OleDbDataReader = _
    dbCommand.ExecuteReader(System.Data.CommandBehavio r.CloseConnection)
    Return dataReader
    End Function

    </script>

    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head runat="server">
    <title>Untitled Page</title>
    </head>
    <body>
    <form id="form1" runat="server">
    <div>
    <asp:datagrid id="dgNews" runat="server" autogeneratecolumns="False"
    horizontalalign="Left" borderstyle="None" gridlines="Horizontal"
    borderwidth="1px" bordercolor="#E7E7FF" backcolor="White"
    cellpadding="3">
    <footerstyle forecolor="#4A3C8C"
    backcolor="#B5C7DE"></footerstyle>
    <headerstyle font-bold="True" forecolor="#F7F7F7"
    backcolor="#4A3C8C"></headerstyle>
    <pagerstyle horizontalalign="Right" forecolor="#4A3C8C"
    backcolor="#E7E7FF"
    mode="NumericPages"></pagerstyle>
    <selecteditemstyle font-bold="True" forecolor="#F7F7F7"
    backcolor="#738A9C"></selecteditemstyle>
    <alternatingitemstyle
    backcolor="#F7F7F7"></alternatingitemstyle>
    <itemstyle forecolor="#4A3C8C" backcolor="#E7E7FF"></itemstyle>
    <columns>
    <asp:boundcolumn datafield="BirthDate"
    readonly="True"></asp:boundcolumn>
    <asp:boundcolumn datafield="Title"></asp:boundcolumn>
    <asp:boundcolumn datafield="FirstName"></asp:boundcolumn>
    <asp:hyperlinkcolumn text="more" target="_self"
    datanavigateurlfield="PhotoPath"></asp:hyperlinkcolumn>
    </columns>
    </asp:datagrid>

    </div>
    </form>
    </body>
    </html>

    "andrew sargent" <as@nospam.com> wrote in message
    news:QFgEc.137$vC4.121@fe1.news.blueyonder.co.uk.. .
    > OK, here goes:
    Ken Cox [Microsoft MVP] Guest

  13. #12

    Default Re: Hyperlink problem

    The code was generated with webmatrix which may explain why it differs from
    your code.

    I seem to have the same problem with this codde too. so i am not sure what
    is going wrong!


    "Ken Cox [Microsoft MVP]" <BANSPAMken_cox@sympatico.ca> wrote in message
    news:eriJy7gXEHA.648@TK2MSFTNGP10.phx.gbl...
    > Hi Andrew,
    >
    > Hi had to rejig your code to use the Nwind database. You seem to be using
    > some strange interfaces which I changed. Not sure what's the reason.
    >
    > Try this to see how you do?
    >
    > Ken
    > Microsoft MVP [ASP.NET]
    >
    >
    > <%@ Page Language="VB" %>
    > <%@ import namespace="system.data" %>
    > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
    > "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
    >
    > <script runat="server">
    > Sub Page_Load(ByVal sender As Object, _
    > ByVal e As System.EventArgs)
    > If Not IsPostBack Then
    > dgNews.DataSource = GetNews()
    > dgNews.DataBind()
    > End If
    > End Sub
    >
    > Function GetNews() As _
    > System.Data.OleDb.OleDbDataReader
    > Dim connectionString As String = _
    > "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & _
    > Server.MapPath("data/nwind.mdb")
    > Dim dbConnection As System.Data.OleDb.OleDbConnection = _
    > New System.Data.OleDb.OleDbConnection(connectionString )
    > Dim queryString As String = "SELECT * from employees "
    > ' Dim queryString As String = "SELECT [news].[Title],
    > [news].[Text], [news].[URL], [news].[Date] FROM [news] "
    > Dim dbCommand As System.Data.OleDb.OleDbCommand = _
    > New System.Data.OleDb.OleDbCommand()
    > dbCommand.CommandText = queryString
    > dbCommand.Connection = dbConnection
    > dbConnection.Open()
    > Dim dataReader As System.Data.OleDb.OleDbDataReader = _
    >
    dbCommand.ExecuteReader(System.Data.CommandBehavio r.CloseConnection)
    > Return dataReader
    > End Function
    >
    > </script>
    >
    > <html xmlns="http://www.w3.org/1999/xhtml" >
    > <head runat="server">
    > <title>Untitled Page</title>
    > </head>
    > <body>
    > <form id="form1" runat="server">
    > <div>
    > <asp:datagrid id="dgNews" runat="server"
    autogeneratecolumns="False"
    > horizontalalign="Left" borderstyle="None"
    gridlines="Horizontal"
    > borderwidth="1px" bordercolor="#E7E7FF" backcolor="White"
    > cellpadding="3">
    > <footerstyle forecolor="#4A3C8C"
    > backcolor="#B5C7DE"></footerstyle>
    > <headerstyle font-bold="True" forecolor="#F7F7F7"
    > backcolor="#4A3C8C"></headerstyle>
    > <pagerstyle horizontalalign="Right" forecolor="#4A3C8C"
    > backcolor="#E7E7FF"
    > mode="NumericPages"></pagerstyle>
    > <selecteditemstyle font-bold="True" forecolor="#F7F7F7"
    > backcolor="#738A9C"></selecteditemstyle>
    > <alternatingitemstyle
    > backcolor="#F7F7F7"></alternatingitemstyle>
    > <itemstyle forecolor="#4A3C8C"
    backcolor="#E7E7FF"></itemstyle>
    > <columns>
    > <asp:boundcolumn datafield="BirthDate"
    > readonly="True"></asp:boundcolumn>
    > <asp:boundcolumn datafield="Title"></asp:boundcolumn>
    > <asp:boundcolumn datafield="FirstName"></asp:boundcolumn>
    > <asp:hyperlinkcolumn text="more" target="_self"
    > datanavigateurlfield="PhotoPath"></asp:hyperlinkcolumn>
    > </columns>
    > </asp:datagrid>
    >
    > </div>
    > </form>
    > </body>
    > </html>
    >
    > "andrew sargent" <as@nospam.com> wrote in message
    > news:QFgEc.137$vC4.121@fe1.news.blueyonder.co.uk.. .
    > > OK, here goes:
    >

    ---
    Outgoing mail is certified Virus Free.
    Checked by AVG anti-virus system (http://www.grisoft.com).
    Version: 6.0.711 / Virus Database: 467 - Release Date: 25/06/2004


    andrew sargent Guest

  14. #13

    Default Re: Hyperlink problem

    OK, I have figured out where i was going wrong. The data type in the
    database was set to Hyperlink.
    I changed it to Text and...bob's your mother's brother ;-)

    Andrew


    "andrew sargent" <as@nospam.com> wrote in message
    news:8NlEc.3629$a37.3370@fe2.news.blueyonder.co.uk ...
    > The code was generated with webmatrix which may explain why it differs
    from
    > your code.
    >
    > I seem to have the same problem with this codde too. so i am not sure what
    > is going wrong!
    >
    >
    > "Ken Cox [Microsoft MVP]" <BANSPAMken_cox@sympatico.ca> wrote in message
    > news:eriJy7gXEHA.648@TK2MSFTNGP10.phx.gbl...
    > > Hi Andrew,
    > >
    > > Hi had to rejig your code to use the Nwind database. You seem to be
    using
    > > some strange interfaces which I changed. Not sure what's the reason.
    > >
    > > Try this to see how you do?
    > >
    > > Ken
    > > Microsoft MVP [ASP.NET]
    > >
    > >
    > > <%@ Page Language="VB" %>
    > > <%@ import namespace="system.data" %>
    > > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
    > > "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
    > >
    > > <script runat="server">
    > > Sub Page_Load(ByVal sender As Object, _
    > > ByVal e As System.EventArgs)
    > > If Not IsPostBack Then
    > > dgNews.DataSource = GetNews()
    > > dgNews.DataBind()
    > > End If
    > > End Sub
    > >
    > > Function GetNews() As _
    > > System.Data.OleDb.OleDbDataReader
    > > Dim connectionString As String = _
    > > "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & _
    > > Server.MapPath("data/nwind.mdb")
    > > Dim dbConnection As System.Data.OleDb.OleDbConnection = _
    > > New System.Data.OleDb.OleDbConnection(connectionString )
    > > Dim queryString As String = "SELECT * from employees "
    > > ' Dim queryString As String = "SELECT [news].[Title],
    > > [news].[Text], [news].[URL], [news].[Date] FROM [news] "
    > > Dim dbCommand As System.Data.OleDb.OleDbCommand = _
    > > New System.Data.OleDb.OleDbCommand()
    > > dbCommand.CommandText = queryString
    > > dbCommand.Connection = dbConnection
    > > dbConnection.Open()
    > > Dim dataReader As System.Data.OleDb.OleDbDataReader = _
    > >
    > dbCommand.ExecuteReader(System.Data.CommandBehavio r.CloseConnection)
    > > Return dataReader
    > > End Function
    > >
    > > </script>
    > >
    > > <html xmlns="http://www.w3.org/1999/xhtml" >
    > > <head runat="server">
    > > <title>Untitled Page</title>
    > > </head>
    > > <body>
    > > <form id="form1" runat="server">
    > > <div>
    > > <asp:datagrid id="dgNews" runat="server"
    > autogeneratecolumns="False"
    > > horizontalalign="Left" borderstyle="None"
    > gridlines="Horizontal"
    > > borderwidth="1px" bordercolor="#E7E7FF" backcolor="White"
    > > cellpadding="3">
    > > <footerstyle forecolor="#4A3C8C"
    > > backcolor="#B5C7DE"></footerstyle>
    > > <headerstyle font-bold="True" forecolor="#F7F7F7"
    > > backcolor="#4A3C8C"></headerstyle>
    > > <pagerstyle horizontalalign="Right" forecolor="#4A3C8C"
    > > backcolor="#E7E7FF"
    > > mode="NumericPages"></pagerstyle>
    > > <selecteditemstyle font-bold="True" forecolor="#F7F7F7"
    > > backcolor="#738A9C"></selecteditemstyle>
    > > <alternatingitemstyle
    > > backcolor="#F7F7F7"></alternatingitemstyle>
    > > <itemstyle forecolor="#4A3C8C"
    > backcolor="#E7E7FF"></itemstyle>
    > > <columns>
    > > <asp:boundcolumn datafield="BirthDate"
    > > readonly="True"></asp:boundcolumn>
    > > <asp:boundcolumn datafield="Title"></asp:boundcolumn>
    > > <asp:boundcolumn
    datafield="FirstName"></asp:boundcolumn>
    > > <asp:hyperlinkcolumn text="more" target="_self"
    > > datanavigateurlfield="PhotoPath"></asp:hyperlinkcolumn>
    > > </columns>
    > > </asp:datagrid>
    > >
    > > </div>
    > > </form>
    > > </body>
    > > </html>
    > >
    > > "andrew sargent" <as@nospam.com> wrote in message
    > > news:QFgEc.137$vC4.121@fe1.news.blueyonder.co.uk.. .
    > > > OK, here goes:
    > >
    >
    >
    > ---
    > Outgoing mail is certified Virus Free.
    > Checked by AVG anti-virus system (http://www.grisoft.com).
    > Version: 6.0.711 / Virus Database: 467 - Release Date: 25/06/2004
    >
    >

    ---
    Outgoing mail is certified Virus Free.
    Checked by AVG anti-virus system (http://www.grisoft.com).
    Version: 6.0.711 / Virus Database: 467 - Release Date: 25/06/2004


    andrew sargent Guest

  15. #14

    Default Re: Hyperlink problem

    Thanks for reporting back.

    That's another weird one for someone else to find in a Google search some
    day!

    "andrew sargent" <as@nospam.com> wrote in message
    news:KsiFc.4400$eK2.3356@fe1.news.blueyonder.co.uk ...
    > OK, I have figured out where i was going wrong. The data type in the
    > database was set to Hyperlink.
    > I changed it to Text and...bob's your mother's brother ;-)
    >
    > Andrew
    >
    >
    Ken Cox [Microsoft MVP] Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139