Question
Thread display: Collapse - |
All Answers
Share your knowledge
Start or search
Create a new discussion
If you're asking for technical help, please be sure to include all your system info, including operating system, model number, and any other specifics related to the problem. Also please exercise your best judgment when posting in the forums--revealing personal information such as your e-mail address, telephone number, and address is not recommended.
how to include user defined class in asp.net 2005
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