LadyReader1
Member
- Joined
- Apr 11, 2007
- Messages
- 10
- Programming Experience
- 10+
I have a class defined as clsWorkRecord. I have 2 asp pages which have code-behind that should be able to instantiate the class and then use those methods I have coded for that class (AddWorkRecord, UpdateWorkRecord, DeleteWorkRecord).
On one of those 2 pages I can do just that, however, on the 2nd page I instantiate the class (exactly as I did on the first page):
but when I type "thisWorkRecord." none of the methods I wrote are visible in intellisense.
I am stumped. Any ideas?
Thanks.
On one of those 2 pages I can do just that, however, on the 2nd page I instantiate the class (exactly as I did on the first page):
VB.NET:
Dim thisWorkRecord as new clsWorkRecord
but when I type "thisWorkRecord." none of the methods I wrote are visible in intellisense.
I am stumped. Any ideas?
Thanks.