In een voorbeeld kwam ik <naam.iets()> tegen. Kan iemand uitleggen wat het is of waar ik op moet zoeken? want vb.net <> ofzo schiet ik niets mee op. 
Voorbeeld
Voorbeeld
code:
1
2
3
4
5
6
7
8
9
10
11
12
| Partial Class _Default
Inherits System.Web.UI.Page
Private Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs) Handles MyBase.Load
'Register the class containing the server-side function
'we are interested in
Ajax.Utility.RegisterTypeForAjax(GetType(_Default))
End Sub
<Ajax.AjaxMethod()> _
Public Function GetMessageOfTheDay() As String
Return "Experience is the mother of wisdom"
End Function
End Class |