Hi all, I need your help.
I need import periodically in the db mysql from ASP content and the information published in this web page:
http://www.eurometis.it/jobalert/risultati.metis
Can someone help me?
Thanks in advance.
| SitePoint Sponsor |
Hi all, I need your help.
I need import periodically in the db mysql from ASP content and the information published in this web page:
http://www.eurometis.it/jobalert/risultati.metis
Can someone help me?
Thanks in advance.





I'm not sure I understand.
You want to get content from a MySQL database and display it using ASP?
You want to use ASP to put data into a MySQL database?
Something else?
Please clarify your question.
I need use ASP to put data into a MySQL database.
I need import into a MySQL database the information published in this web page:
http://www.eurometis.it/jobalert/risultati.metis
thanks
I try this, but not working:
Form.asp
Code:<% If Request.Form("stampa")="stampa" Then Response.Write ("Il valore di field1 è: " & Request.Form("ja.IdRegione")) Else %> <FORM METHOD="POST"> <INPUT type="text" NAME="ja.IdRegione" VALUE="12" /> <INPUT TYPE="submit" name="stampa" value="stampa" /> </FORM> <% End If %>
test.asp:
Code:<% Set objHTTP = Server.CreateObject("MSXML2.ServerXMLHTTP.3.0") objHTTP.open "POST", "http://www.eurometis.it/jobalert/risultati.metis", False objHTTP.setRequestHeader "Content-Type", "application/x-www-form-urlencoded" objHTTP.send "ja.IdRegione=12&stampa=stampa" if objHTTP.Status = 200 Then Response.write (objHTTP.responseText ) Else Response.Write ("Si è verificato un errore. Status code: " & objHTTP.status) End If Set objHTTP = Nothing %>
Bookmarks