rjain
11-28-2006, 03:08 PM
I am using a event listing applicatio which has database running at backend. I have made the field "feature1" in db as hyperlink and its working fine but this field does not show up as hyperlink on the viewing page...what can I change so that it does come up as hyperlink....thanks
I want the "contact" field to show up as hyperlink. the variable for it is Feature1
http://www.aacps.org/development/development_alerts.asp
The code in asp file for this is
<% If eventlist.Fields.Item("Feature1").Value <> "" Then %>
<tr>
<td width="80" valign="top" class="tableheader"><div align="right">Contact: </div>
</td>
<td valign="top" bgcolor="#FFFFCC"><%=Replace(eventlist.Fields.Item("Feature1").Value,Chr(13),"<BR>")%></td>
</tr>
<% End If%>
I want the "contact" field to show up as hyperlink. the variable for it is Feature1
http://www.aacps.org/development/development_alerts.asp
The code in asp file for this is
<% If eventlist.Fields.Item("Feature1").Value <> "" Then %>
<tr>
<td width="80" valign="top" class="tableheader"><div align="right">Contact: </div>
</td>
<td valign="top" bgcolor="#FFFFCC"><%=Replace(eventlist.Fields.Item("Feature1").Value,Chr(13),"<BR>")%></td>
</tr>
<% End If%>