how to automate the task of searching a particular text string on internet and saving the text before and after untill a space-break is encountered and saving this info in a database.tell me which platform will best suit my need i.e.java or .net,database i.e.Access,or simple asp or HTML.I could use theories,materials or if u could send a code i will be really thankful.
Comments
: internet and saving the text before and after untill a space-break
: is encountered and saving this info in a database.tell me which
: platform will best suit my need i.e.java or .net,database
: i.e.Access,or simple asp or HTML.I could use theories,materials or
: if u could send a code i will be really thankful.
:
Use Google :-)
Here is code example
[code]
function button1_onclick() {
window.open("http://www.google.com/search?hl=en&q=" + document.getElementById("text1").value + "&btnG=Google+Search");
}
Search:
[/code]