Here's a contact grabber for PHP: http://www.phpclasses.org/browse/package/3895.html Its not ASP but you can use the same methodology. Based around using curl.
Why would you use any form of screen grabbing given that there are API's to do this? We have developed a component for viral campaign work but it is .Net
Hi, i s there any tips for developing such a script i also need it in asp, i looked arround but no such scripts in asp. so i want to develop one like that, how i should start doing that? i tried to understand the php scripts but i couldn't.
Hi, Im new to this forum. I need to build a contact list grabber for yahoo,hotmail and gmail. Is there a way i can do it. To convert from php to asp seems impossible as the code in php is quite complited, not that im not willing to try.I will. Maybe there is a better way of doing it.Any suggestion pls. Im running out of idea. Thanks for any help.
Hi All, Please find the ASP. Yahoo Contact list grabber code <% txtusername=youremail@yahoo.com 'Enter your yahoo Email Address txtPassword=YourPassword ' Enter your password Set oXMLHTTP = Server.CreateObject("WinHTTP.WinHTTPRequest.5.1") oXMLHTTP.open "POST", "http://login.yahoo.com/config/login?", False oXMLHTTP.setRequestHeader "Content-Type","application/x-www-form-urlencoded" oXMLHTTP.send "src=&.tries=5&.bypass=&.partner=&.md5=&.hash=&.intl=us&.tries=1&.challenge=ydKtXwwZarNeRMeAufKa56.oJqaO&.u=dmvmk8p231bpr&.yplus=&.emailCode=&pkg=&stepid=&.ev=&hasMsgr=0&.v=0&.chkP=N&.last=&.done=http://address.mail.yahoo.com/&login="& txtusername &"&passwd="& txtPassword&"" 'postar data 'Response.Write "Resultat: " & oXMLHTTP.responsetext if(InStr(1, oXMLHTTP.responsetext, "Invalid ID or password", 1)>0) then Response.Redirect("index.asp?login=fail&type=yahoo") end if if(InStr(1, oXMLHTTP.responsetext, "This ID is not yet taken", 1)>0) then Response.Redirect("index.asp?login=notvaludid&type=yahoo") end if oXMLHTTP.open "POST", "http://address.mail.yahoo.com/", False oXMLHTTP.setRequestHeader "Content-Type","application/x-www-form-urlencoded" oXMLHTTP.send ".crumb=edNtmLWLP1J&VPC=import_export&A=B&submit[action_export_outlook]=Export Now" 'Response.Write "Resultat: " & oXMLHTTP.responsetext strAryWords = Split(oXMLHTTP.responsetext, ",") j=1 flglogin=false For i = 0 to Ubound(strAryWords) 'Response.Write i & " = " & strAryWords(i) & "<BR>" 'Response.Write(InStr(1, strAryWords(i), "@", 1)) if(InStr(1, strAryWords(i), "@", 1)>0) then email=replace(strAryWords(i),"""","") flglogin=true %> <tr><td><input type="checkbox" name="chkemail" value="<%=email%>"></td><td class="details"> <% Response.Write(email) j=j+1 %> </td></tr> <% end if Next if flglogin=false then Response.Redirect("index.asp?login=fail&type=yahoo") end if %> Code (markup):
Hi, Im new to this forum. I need to build a contact list grabber for yahoo,hotmail and gmail. Is there a way i can do it. To convert from php to asp seems impossible as the code in php is quite complited, not that im not willing to try.I will. Maybe there is a better way of doing it.Any suggestion pls. Im running out of idea. Thanks for any help.
Here is a place where you can get gmail,yahoo, msn, aol, linkedin, myspace, hotmail and so on An contact grabber in asp.net http://www.stescodes.com/grabcontacts.aspx experience the demo too