Categories
Design & UI

SharePoint: University College Falmouth Intranet

These design solutions were created as part of the University’s move from a 10 year old, bespoke, Classic ASP driven Intranet (which I originally developed) to Microsoft SharePoint 2010. Their purpose was to act as a starting point for discussion among staff and students and to generate feedback.

Homepage

Sub Page

Categories
Coding

Converting URLs into Hyperlinks

This is a essential peice of Classic ASP code I’ve used time after time for my websites – originally taken from 4GuysFromRolla.com, I’m pasting it here for future reference.

'----------------------------------------------
' InsertHyperlinks(inText)
' Returns a inText with "<a target="_BLANK" href="URL" mce_href="URL">URL</a>"
' inserted where there is URL found.
'
' URL can start with "www" or "http"
' or
' URL can be a email address "*@*"
'----------------------------------------------
Function InsertHyperlinks(inText)
Dim objRegExp, strBuf
Dim objMatches, objMatch
Dim Value, ReplaceValue, iStart, iEnd
strBuf = ""
  iStart = 1
  iEnd = 1
  Set objRegExp = New RegExp
objRegExp.Pattern = "\b(www|http|\S+@)\S+\b" ' Match URLs and emails
  objRegExp.IgnoreCase = True ' Set case insensitivity.
  objRegExp.Global = True ' Set global applicability.
  Set objMatches = objRegExp.Execute(inText)
  For Each objMatch in objMatches
  iEnd = objMatch.FirstIndex
  strBuf = strBuf & Mid(inText, iStart, iEnd-iStart+1)
  If InStr(1, objMatch.Value, "@") Then
  strBuf = strBuf & GetHref(objMatch.Value, "EMAIL", "_BLANK")
  Else
  strBuf = strBuf & GetHref(objMatch.Value, "WEB", "_BLANK")
  End If
  iStart = iEnd+objMatch.Length+1
  Next
  strBuf = strBuf & Mid(inText, iStart)
  InsertHyperlinks = strBuf
End Function

Function GetHref(url, urlType, Target)
Dim strBuf
strBuf = "<a href="""
If UCase(urlType) = "WEB" Then
If LCase(Left(url, 3)) = "www" Then
strBuf = "<a href=""http://" & url & """ Target=""" & _
Target & """>" & url & "</a>"
Else
strBuf = "<a href=""" & url & """ Target=""" & _
Target & """>" & url & "</a>"
End If
ElseIf UCase(urlType) = "EMAIL" Then
strBuf = "<a href=""mailto:" & url & """ Target=""" & _
Target & """>" & url & "</a>"
End If
GetHref = strBuf
End Function