ecco piu codice:
codice:
'-----------------------------
Function GetMeta(strStart, strEnd, strFileTxt)
'-----------------------------
Dim intStart
Dim intEnd
intStart = InStr(1, LCase(strFileTxt), strStart, 1)
If intStart = 0 And InStr(strStart, "name=") Then
strStart = Replace(strStart, "name=", "http-equiv=")
intStart = InStr(1, LCase(strFileTxt), strStart, 1)
End If
If not intStart = 0 Then
intStart = intStart + Len(strStart)
intEnd = InStr(intStart, LCase(strFileTxt), strEnd, 1)
GetMeta = Trim(Mid(strFileTxt, intStart, (intEnd - intStart)))
Else
GetMeta = "<- Nessun dominio trovato ->"
vorrei inserire un collegamento ad una pagina quì cosi che se il dominio risulta libero smistiamo sulla pagina per registrarlo!!!!
' registralo
End If
'-----------------------------
End Function
'-----------------------------
%>
Grazie!