Wrox Home  
Search P2P Archive for: Go

  Return to Index  

asp_databases thread: Hyperlinks???


Message #1 by "Locke, Darrell (FCS/SFC)" <Darrell.Locke@g...> on Fri, 27 Sep 2002 09:05:26 -0300
I am losing my mind..........I cannot remember how to do this.

I am populating tables dynamically from a access DB.  In this table there
are 30 department names. What I want to is once this writes back to the
table I want the department names to be hyperlinks......I can't remember how
to do this, can someone help?

Thanks in advance.
Darrell
Message #2 by Sam Clohesy <sam@e...> on Fri, 27 Sep 2002 13:19:29 +0100
Hi Darrell do you mean:

<a href="<%=rs("mylink"%>"><%=("mydeptname")%></a>

Cheers
Sam


-----Original Message-----
From: Locke, Darrell (FCS/SFC) [mailto:Darrell.Locke@g...]
Sent: 27 September 2002 13:05
To: ASP Databases
Subject: [asp_databases] Hyperlinks???


I am losing my mind..........I cannot remember how to do this.

I am populating tables dynamically from a access DB.  In this table there
are 30 department names. What I want to is once this writes back to the
table I want the department names to be hyperlinks......I can't remember how
to do this, can someone help?

Thanks in advance.
Darrell

Message #3 by d.van.herk@w... on Fri, 27 Sep 2002 14:17:46 +0200
Maybe you can use 

Response.Write "<TD><A HREF='www.microsoft.com/" & departmentname & ".html'>" & 
rsRecord("departmentname") & "</A></TD>"

Greetings Dennis

> I am losing my mind..........I cannot remember how to do this.
> 
> I am populating tables dynamically from a access DB.  In this table there
> are 30 department names. What I want to is once this writes back to the
> table I want the department names to be hyperlinks......I can't remember
> how
> to do this, can someone help?
> 
> Thanks in advance.
> Darrell
> 
> 
> 





__________________________________________________________



Nieuw: Wanadoo ADSL Lite voor 27,95 euro per maand!





Meer informatie: http://www.wanadoo.nl/adsl
Message #4 by Doods Perea <dindo.perea@a...> on Fri, 27 Sep 2002 15:18:54 +0300
This is the short of it (rsDeptNames is the variable for your
Recordset), YOURDEPTNAME is the fieldname for your department names in
your Access database:

Response.Write "<a href='" & rsDeptNames("YOURDEPTNAME") & "'>" &
rsDeptNames("YOURDEPTNAME") & "</a>"

Hope this helps.
Doods


-----Original Message-----
From: Locke, Darrell (FCS/SFC) [mailto:Darrell.Locke@g...] 
Sent: Friday, September 27, 2002 3:05 PM
To: ASP Databases
Subject: [asp_databases] Hyperlinks???


I am losing my mind..........I cannot remember how to do this.

I am populating tables dynamically from a access DB.  In this table
there are 30 department names. What I want to is once this writes back
to the table I want the department names to be hyperlinks......I can't
remember how to do this, can someone help?

Thanks in advance.
Darrell


Message #5 by "Locke, Darrell (FCS/SFC)" <Darrell.Locke@g...> on Fri, 27 Sep 2002 09:24:06 -0300
Yes, that would work just fine......to think this is Friday and not
Monday......thanks buddy.

Darrell

-----Original Message-----
From: Sam Clohesy [mailto:sam@e...] 
Sent: September 27, 2002 9:19 AM
To: ASP Databases
Subject: [asp_databases] RE: Hyperlinks???

Hi Darrell do you mean:

<a href="<%=rs("mylink"%>"><%=("mydeptname")%></a>

Cheers
Sam


-----Original Message-----
From: Locke, Darrell (FCS/SFC) [mailto:Darrell.Locke@g...]
Sent: 27 September 2002 13:05
To: ASP Databases
Subject: [asp_databases] Hyperlinks???


I am losing my mind..........I cannot remember how to do this.

I am populating tables dynamically from a access DB.  In this table there
are 30 department names. What I want to is once this writes back to the
table I want the department names to be hyperlinks......I can't remember how
to do this, can someone help?

Thanks in advance.
Darrell



  Return to Index