-
Include Link beside date
Function getContent(xml)
Dim strContent
strContent = "<DIV style=""font-size: 110%"">"
strContent = strContent & FormatDateTime(Now(), 1)
strContent = strContent & "</DIV>"
strContent = strContent & "<HR>"
getContent = strContent
End Function
The vbScript code above display date but i would like to display a "link" beside date like below. Knowledge Management is a link. Can someone show me the code please. thanks
Monday, June 16, 2003 ; Knowledge Management
-
Code:
Function getContent(xml)
Dim strContent
strContent = "<DIV style=""font-size: 110%"">"
strContent = strContent & FormatDateTime(Now(), 1)
strContent = strContent & " ; <a href=""knowlege.asp"">Knowledge Management</a>"
strContent = strContent & "</DIV>"
strContent = strContent & "<HR>"
getContent = strContent
End Function