You can see the quick start guide on my site
http://josephguadagno.net/ajax.aspx. Basically, the AjaxPro.Net
library communicates with the ASP.NET web pages not classes within your
ASP.NET project.
Within the page outlined in
The page_load event for my web page (Subscriptions):
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
AjaxPro.Utility.RegisterTypeForAjax(GetType(AjaxData))
End sub
Place the following
<AjaxPro.AjaxMethod()> _
Public Function GetSubType(ByVal type As String) As DataView
GetSubType = Nothing
Dim dvwSubType As DataView
dvwSubType = New
DataView(myAjax.GetSubType(type).Tables("SubType"))
Return dvwSubType
End Function
Joseph Guadagno
http://josephguadagno.net
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Ajax.NET Professional" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/ajaxpro
The latest downloads of Ajax.NET Professional can be found at
http://www.ajaxpro.info
-~----------~----~----~----~------~----~------~--~---