That property builds the resource file name by appending its ID to the path.
I'm not sure about the ID approach, since appart from regular module loading, this won't work with specific IDs.
For instance, this does not work with User Controls, nor does it work with module controls in Inventua's Shadow module or I guess any module of that kind.
Personaly, I found it useful to define a base control with the following properties:
Public Property MyFileName() As String
Get
If Me._MyFileName = "" Then
Me.MyFileName = Me.GetType.Name.Replace("_ascx", ".ascx")
End If
Return Me._MyFileName
End Get
Set(ByVal Value As String)
Me._MyFileName = Value
End Set
End Property
Public Property LocalResourceFile() As String
Get
If Me._localResourceFile = "" Then
Me._localResourceFile = DotNetNuke.Services.Localization.Localization.GetResourceFile(Me, Me.MyFileName)
End If
Return Me._localResourceFile
End Get
Set(ByVal Value As String)
_localResourceFile = Value
End Set
End Property
I've read that GetType is pretty quick unlike some other Reflexion methods so that could be an alternative, what do you think?