D
Doug Stiers
I have an ASP.Net 1.1 (VB) application where I have several usercontrols,
one is
called DetailLine.
Dim ucLine As DetailLine ' this code works fine
In converting this application to ASP.Net 2.0 I run into this problem. Now
this line of code wont compile:
Dim ucLine As DetailLine
And I dont see any of my classes in Intellisense, like the usercontrols and
other objects in the project. I'm obviously still learning the 2.0
framework, am I not declaring this class correctly? Here's the class
declaration:
Public Class DetailLine
Inherits System.Web.UI.UserControl
Public Sub DoSomething()
End Sub
End Class
Thanks for your help in advance, DougS
one is
called DetailLine.
Dim ucLine As DetailLine ' this code works fine
In converting this application to ASP.Net 2.0 I run into this problem. Now
this line of code wont compile:
Dim ucLine As DetailLine
And I dont see any of my classes in Intellisense, like the usercontrols and
other objects in the project. I'm obviously still learning the 2.0
framework, am I not declaring this class correctly? Here's the class
declaration:
Public Class DetailLine
Inherits System.Web.UI.UserControl
Public Sub DoSomething()
End Sub
End Class
Thanks for your help in advance, DougS