<% if request("id") = "" then set rs_tec = db.execute("select tec_id, tec_nome, tec_img_p from tbl_tec order by tec_nome") if rs_tec.eof then response.Write "

Nenhum registro encontrado

" else response.Write "" response.Write "" do until rs_tec.eof xx = xx + 1 response.Write "" if xx = 3 then xx = 0 : response.Write "" rs_tec.movenext loop end if set rs_tec = nothing response.Write "

"&rs_tec(1)&"
" else set rs_tec = db.execute("select * from tbl_tec where tec_id = " & request("id")) if rs_tec.eof then response.Write "

Nenhum registro encontrado

" else response.Write "" response.Write "" response.Write "" response.Write "" end if set rs_tec = nothing response.Write "

"&rs_tec(1)&"
Idade: "& year(date) - year(rs_tec("tec_nasc")) &" anos
Altura: "& rs_tec("tec_alt") &"
Peso: "& rs_tec("tec_peso") &" Kg

" video = rs_tec("tec_vid") video = replace(video, "400","188") video = replace(video, "300","141") response.Write video response.Write "
" response.Write "Observações:
"&rs_tec("tec_desc") response.Write "
" end if%>