arkadaşımız vidivodo sitesi için giriş istemiş yaptım buraya koyayim dedim

<%
user = "kullanıcı adı"
pass = "sifre"
data = "logmein=1&username="& user &"&password="& pass
adres= "http://www.vidivodo.com"

set xmlhttp = server.createobject("msxml2.ServerXMLHTTP")
xmlhttp.open "POST", adres, false
xmlhttp.setRequestHeader "Content-Type", "application/x-www-form-urlencoded;"
xmlhttp.send data
CheckR = xmlhttp.responsetext
Response.write xmlhttp.responsetext
set xmlhttp = nothing

response.write CheckR
%>