I found where is a problem, but can't to fix that.
Private Sub grdUserRoles_ItemCreated(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) Handles grdUserRoles.ItemCreated
Try
Dim item As DataGridItem = e.Item
Dim cmdDeleteUserRole As ImageButton = e.Item.FindControl("cmdDeleteUserRole")
Dim role As UserRoleInfo = DirectCast(e.Item.DataItem, UserRoleInfo)
If Not cmdDeleteUserRole Is Nothing Then
ClientAPI.AddButtonConfirm(cmdDeleteUserRole, String.Format(Localization.GetString("DeleteUsersFromRole.Text", LocalResourceFile), role.FullName, role.RoleName))
cmdDeleteUserRole.Attributes.Add("roleId", role.RoleID)
cmdDeleteUserRole.Attributes.Add("userId", role.UserID)
End If
Catch exc As Exception 'Module failed to load
ProcessModuleLoadException(Me, exc)
End Try
End Sub
where LocalResourceFile =/DesktopModules/Admin/Security/App_LocalResources/SecurityRoles/DesktopModules/Admin/Security/App_LocalResources/SecurityRoles/DesktopModules/Admin/Security/App_LocalResources/SecurityRoles/DesktopModules/Admin/Security/App_LocalResources/SecurityRoles/DesktopModules/Admin/Security/App_LocalResources/SecurityRoles
How can i change LocalResourceFile ????
please HELP