asptear kullanmadım bilmiyorum fakat asphttp3 bileşeniyle şu şekilde login isteyen bi sayfaya user ve pass bilgilerini post ederek erişebilirsin..
<%
Set HttpObj = Server.CreateObject("AspHTTP.Conn")
HTTPObj.Url = "http://www.site.com/login.asp"
HTTPObj.PostData = "username=kullaniciadi&password=sifre"
HTTPObj.RequestMethod = "POST"
HTTPObj.ContentType = "application/x-www-form-urlencoded"
HttpObj.FollowRedirects = true
HttpObj.UserAgent = "Mozilla/5.0 (Windows; U; Windows NT 5.1; tr; rv:1.9.0.9) Gecko/2009040821 Firefox/3.0.9 GTB5"
strResult = HTTPObj.GetURL
Set HttpObj = Nothing
%>