Hi BJSammons,
I have the same issue when I'm logged in as a host or admin it works fine but if i'm not logged in or I'm logged in as a basic user then I have the same problem it doesn't load the View*.ascx.resx file.
The problem with the following code is that it is a work around for user who are not registered if they are registered and logged in it could be user id 3 to what ever.
If Me.UserId = -1 Then
c.HeaderText = Localization.GetString("lbl" & c.HeaderText & ".Text", Me.LocalResourceFile & "\viewEmployees.ascx.resx")
Else
c.HeaderText = Localization.GetString("lbl" & c.HeaderText & ".Text", Me.LocalResourceFile)
End If
1 is host and 2 is admin which in my case both work so
If Me.UserId = 1 or Me.UserId = 2 Then
c.HeaderText = Localization.GetString("lbl" & c.HeaderText & ".Text", Me.LocalResourceFile)
Else
c.HeaderText = Localization.GetString("lbl" & c.HeaderText & ".Text", Me.LocalResourceFile & "\viewEmployees.ascx.resx")
End If
The ideal fix would be cracking the code and fixing it but I'm working in VS2005 Express and it is tough to do anything in that.
Paul