<% ' Kodlayan Hakan Şen ' www.hakansen.com ' ' ' istediğiniz gibi çevirin çoğaltın kopyalayın şeyedin ;) Private Function linkle (strInputEntry) strInputEntry = Replace(strInputEntry, "]", "") strInputEntry = Replace(strInputEntry, "[", "") strInputEntry = Replace(strInputEntry, " ", "-") strInputEntry = Replace(strInputEntry, ".", "") strInputEntry = Replace(strInputEntry, "!", "") strInputEntry = Replace(strInputEntry, ":", "") strInputEntry = Replace(strInputEntry, "?", "") strInputEntry = Replace(strInputEntry, "../", "") strInputEntry = Replace(strInputEntry, "<", "") strInputEntry = Replace(strInputEntry, ">", "") strInputEntry = Replace(strInputEntry, "(", "") strInputEntry = Replace(strInputEntry, ")", "") strInputEntry = Replace(strInputEntry, "%3C", "<") strInputEntry = Replace(strInputEntry, "%3E", ">") strInputEntry = Replace(strInputEntry, "%27", "’") strInputEntry = Replace(strInputEntry, "%22", "“") strInputEntry = Replace(strInputEntry, "%25", "%") strInputEntry = Replace(strInputEntry, """", "", 1, -1, 1) strInputEntry = Replace(strInputEntry, "=", "=", 1, -1, 1) strInputEntry = Replace(strInputEntry, ";", "", 1, -1, 1) strInputEntry = Replace(strInputEntry, "'", "", 1, -1, 1) strInputEntry = Replace(strInputEntry, "`", "-", 1, -1, 1) strInputEntry = Replace(strInputEntry, ",", "_", 1, -1, 1) strInputEntry = Replace(strInputEntry, "select", "select", 1, -1, 1) strInputEntry = Replace(strInputEntry, "union", "union", 1, -1, 1) strInputEntry = Replace(strInputEntry, "'","",1,-1,1) strInputEntry = Replace(strInputEntry, "Chr(34)","",1,-1,1) strInputEntry = Replace(strInputEntry, "Chr(39)","",1,-1,1) strInputEntry = Replace(strInputEntry, "&","-",1,-1,1) strInputEntry = Replace(strInputEntry, "ç", "c", 1, -1, 1) strInputEntry = Replace(strInputEntry, "ı", "i", 1, -1, 1) strInputEntry = Replace(strInputEntry, "İ", "I", 1, -1, 1) strInputEntry = Replace(strInputEntry, "ş", "s", 1, -1, 1) strInputEntry = Replace(strInputEntry, "ö", "o", 1, -1, 1) strInputEntry = Replace(strInputEntry, "ü", "u", 1, -1, 1) strInputEntry = Replace(strInputEntry, "ğ", "g", 1, -1, 1) strInputEntry = Replace(strInputEntry, "Ş", "S", 1, -1, 1) strInputEntry = Replace(strInputEntry, "Ö", "O", 1, -1, 1) strInputEntry = Replace(strInputEntry, "Ü", "U", 1, -1, 1) strInputEntry = Replace(strInputEntry, "Ğ", "G", 1, -1, 1) strInputEntry = Replace(strInputEntry, "Ç", "C", 1, -1, 1) strInputEntry = Replace(strInputEntry, "---", "-", 1, -1, 1) strInputEntry = Replace(strInputEntry, "--", "-", 1, -1, 1) linkle = lcase(server.htmlencode(TRIM(strInputEntry))) End Function %>