к сожалению, не хочет, такая мысль, что не передается параметр s, так как если написать в getpersons2.asp просто написать текст то он его вставляет вот кстати код getpersons2.asp
fiof = request.querystring("fio")
sql = "SELECT * "
sql = sql & "FROM таблица "
sql = sql & "WHERE Full_Name LIKE '" & fiof & "%' ORDER BY Full_Name"
set conn = Server.CreateObject("ADODB.Connection")
Conn.Open "string connection......"
set rs = Server.CreateObject("ADODB.recordset")
rs.Open sql,conn
resp = "<table class=""tff"" cellspacing=""0"">"
do while not rs.eof
resp = resp & "<tr id=""" & rs("num_tab") & """ onclick=""clickff(this.id);"">"
resp = resp & "<td class=""tffc1"">" & rs("Full_Name") & "</td>"
resp = resp & "<td class=""tffc2"">" & rs("firm") & "</td>"
resp = resp & "<td>" & rs("Expr1") &"</td>"
resp = resp & "<td>" & rs("Name_appoint") & "</td>"
resp = resp & "</tr>"
rs.Movenext
loop
resp = resp & "</table>"
response.write(resp)
rs.close: set rs=nothing
conn.close