hello all.
i am writing this code in my class file user.vb
Namespace testing
Public Class adding
Public Function add(ByVal num1 As Integer, ByVal num2 As Integer)
Return num1 + num2
End Function
End Class
End Namespace
and now i want to called the function add() in my .aspx page code-behind.
so wht should i have to write in my code-behind file