Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

A HREF and Response Write

Status
Not open for further replies.

softboy12

ISP
Feb 19, 2004
66
CH
Hi all

Question:

how can i made a "a href" Link to the following code below:

------------------------------------------------------------

<% Response.Write x_Domain %><% Response.Write x_TLD %>
----------------------------------------------------------

if i put <a href = "...... %>"></a> the Link disappear on the form

many thanks in advance

best regards

E.Altherr
 
Try this:

<a href= "link name"> <%=Response.Write x_Domain %><% =Response.Write x_TLD %>
</font></a></p>

-VJ
 
the link will disappear you have no anchor text.

assuming x_domain = domainname and x_tld = com etc.

Code:
<a href="[URL unfurl="true"]http://www.<%=[/URL] x_domain%>.<%=x_tld%>">Some Anchor Text</a>



Chris.

Indifference will be the downfall of mankind, but who cares?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top