Here's the re-usable snippet of VB I came up with... It ultimately was not based on Ryan's answer:
''' <summary>
''' Takes any two Url fragments and combines them, ensuring that the resulting string has only a single / between them. Handles empty values correctly in either Url fragment.
''' </summary>
Public Shared Function UrlCombine(ByVal Url1 As String, ByVal Url2 As String) As String
Dim Builder As New Text.StringBuilder
'Url1
If Url1.Length > 0 Then
Select Case Mid(Url1, Url1.Length, 1)
Case "/", "\"
Builder.Append(Mid(Url1, 1, Url1.Length - 1))
Case Else
Builder.Append(Url1)
End Select
End If
If Builder.Length > 0 Then
Builder.Append("/")
End If
'Url2
If Url2.Length > 0 Then
Select Case Mid(Url2, 1, 1)
Case "/", "\"
Builder.Append(Mid(Url2, 2, Url2.Length))
Case Else
Builder.Append(Url2)
End Select
End If
Return Builder.ToString
End Function