Intercept the content function of a specific part of a string <%
'*********************************
'Function: GetKey(HTML, Start, Last)
'Parameters: HTML, the original string to be intercepted; tart, the start marker is intercepted; last, the end marker is intercepted
'Author: Alixi
'Date: 2007/7/12
'Description: Intercept the string function, start from Start, and end until Last
'Example: <%=GetKey("Alixixi, the largest WEB development resource in China", "largest", "resource")%>
'*********************************
FunctionGetKey(HTML,Start,Last)
filearray=split(HTML,Start)
filearray2=split(filearray(1),Last)
GetKey=filearray2(0)
EndFunction
%>