<%
dim url
function rep(str)
str = replace(str, "'","")
str = replace(str, """","")
str = replace(str, "\","")
str = replace(str, "<","")
str = replace(str, ">","")
str = replace(str, "&","")
str = replace(str, " ","")
str = replace(str, ";","")
str = replace(str, "?","")
str = replace(str, "%","")
str = replace(str, "(","")
rep = str
end function
url = rep(request("url"))
%>
��¼�ٶ�