Torna al Thread
<%@ Page Language="VB" ContentType="text/html" validateRequest="False" %>
<head>
<script type="text/javascript" src="../js/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$.ajax({
type: 'POST',
contentType: 'application/json; charset=utf-8',
dataType: 'json',
url: 'http://www.donnaperfetta.com/ws/dp.asmx/test',
success: function(data){
$("body").html(JSON.stringify(data));
},
error: function(){
$("body").html("Errore!");
}
})
});
</script>
</head>
<body>
</body>
</html>