This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% | |
FUNCTION LoadThePage(strPageText, strInputURL) | |
Set objXMLHTTP = Server.CreateObject("MSXML2.ServerXMLHTTP") | |
objXMLHTTP.Open "GET", strInputURL, False | |
objXMLHTTP.Send | |
strPageText = objXMLHTTP.responseText | |
Set objXMLHTTP = Nothing | |
End FUNCTION | |
FUNCTION GrabTheContent(strStart, strEnd) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% | |
Function MixedCase(strInput) | |
Dim strPos, strSpace, strOutput | |
' Set our position variable to the start of the string. | |
strPosition = 1 | |
' Loop to check spaces | |
Do While InStr(strPosition, strInput, " ", 1) <> 0 | |
strSpace = InStr(strPosition, strInput, " ", 1) | |
strOutput = strOutput & UCase(Mid(strInput, strPosition, 1)) | |
strOutput = strOutput & LCase(Mid(strInput, strPosition + 1, strSpace - strPosition)) |