Namespace
I am trying to create modules using DNN 4.8.2. I am using Visual Studio 2008 and I am using the Dotnetnuke comiled module template. I have to make some changes to the project before it will work. Lets say my module name is test. One of the corrections that I don't understand is in the ViewTest.ascx.designer.vb there is the following code -
Namespace
StarK.Modules.Test
Partial Public Class
ViewTest
Protected WithEvents lstContent As System.Web.UI.WebControls.DataList
End
Class
End
In order for the module to work I have to insert the word Global before System.Web.UI.WebControls.DataList
Why is that and what does it mean?
I am a newbie to asp.net and web programming.
Thanks
Judith