38 messaggi dal 06 settembre 2002
salve,
sto cercando di usare il "PageMethods", ma quando avvio la mia pagina asp, mi dice:

"PageMethods is not defined"

vi invio la mia pagina:

html:

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="test3.aspx.vb" Inherits="test_test3" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>Untitled</title>

</head>
<body>
<form id="form1" runat="server">
&nbsp;<asp:ScriptManager ID="ScriptManager1" runat="server" EnablePageMethods="True">
</asp:ScriptManager>
<br />

<a href="#" onclick="javascript:preview();">Test</a>
<script type="text/javascript" language="javascript">
function preview()
{
PageMethods.GetMessage(onComplete);
}
function onComplete(res)
{
alert(res);
}
</script>
</form>
</body>
</html>


vb code:

Imports System.Web.Services

Partial Class test_test3
Inherits System.Web.UI.Page


<WebMethod()> _
Public Function GetMessage() As String

Return "Hello World"
End Function

End Class

in cosa sbaglio???

grazie

Torna al forum | Feed RSS

ASPItalia.com non è responsabile per il contenuto dei messaggi presenti su questo servizio, non avendo nessun controllo sui messaggi postati nei propri forum, che rappresentano l'espressione del pensiero degli autori.