|
|
Subject:
Ajax and mxtoolbox...
Category: Computers > Programming Asked by: johnsmith2006-ga List Price: $100.00 |
Posted:
30 Aug 2006 21:14 PDT
Expires: 29 Sep 2006 21:14 PDT Question ID: 761027 |
i want to use iserverxmlhttp to get infomation from site http://www.mxtoolbox.com/blacklists.aspx?AG=GBL I want to post a ip throught iServerXmlHTTP to the site above and get the result of blacklist check, but I can't. Please help me, make the code for me, I use ASP. | |
|
|
There is no answer at this time. |
|
Subject:
Re: Ajax and mxtoolbox...
From: nothing_s_impossible-ga on 10 Sep 2006 05:03 PDT |
I can do it for you, but I need more information ..... also I need to know what exactly u need.... just sample code or with same Structure..?? let me know about it. |
Subject:
Re: Ajax and mxtoolbox...
From: johnsmith2006-ga on 14 Sep 2006 00:19 PDT |
u know? the site above allow me to post an ip to it server and they will return a result to show if this ip was blacklisted. but I want to use it to check a lot of ip, so I would like to use javascript to get infomation from it; and the code is the only thing I need. |
Subject:
Re: Ajax and mxtoolbox...
From: sazid-ga on 14 Sep 2006 17:13 PDT |
hi johnsmith2006, looks like you need to use screen scraping method. need to find out the Request.Form variable you need to post in order to get the data. i didn't get a chance 2 completely work on it. will let you know if i find anything. in the meanwhile, here is a sample code you can try. function ScrapData() { var oXMLHttp = new ActiveXObject("Microsoft.XMLHTTP"); oXMLHttp.Open("POST","http://www.mxtoolbox.com/blacklists.aspx?AG=GBL",false); oXMLHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); oXMLHttp.Send("txtIPv4=" + escape("202.212.33.323")); // oXMLHttp.responseText returns the complete HTML content from the mxtoolbox // page. You can parse the corresponding html to get the data you want. return oXMLHttp.responseText; } cheers, sazid. |
Subject:
Re: Ajax and mxtoolbox...
From: sazid-ga on 14 Sep 2006 19:06 PDT |
hi johnsmith2006, i have the asp.net code that works with the mxtoolbox. let me know if you are interested. cheers, sazid. |
Subject:
Re: Ajax and mxtoolbox...
From: cake123-ga on 12 Oct 2006 10:44 PDT |
sazid I am very interested in your code solution to the mxtoolbox blacklist check? Thanks for any help you can give Adam |
If you feel that you have found inappropriate content, please let us know by emailing us at answers-support@google.com with the question ID listed above. Thank you. |
Search Google Answers for |
Google Home - Answers FAQ - Terms of Service - Privacy Policy |