Hey Cathal,
Thanks for your suggestions! Will post here for bug issues from now on.
I ran the two stored procedures for each module and all packages return fine.
dnn_GetPackageTypes and dnn_GetPckagesByType null,'Module'
I've been stepping through the code and in
private void extensionTypeRepeater_ItemDataBound(object sender, RepeaterItemEventArgs e)
both the below are being assigned to null
DataGrid extensionsGrid = item.Controls[1] as DataGrid;Label noResultsLabel = item.Controls[3] as Label;
item.Controls[1] is a DataBoundLiteral control with the Text value of "Modules" and
item.controls[3] is a DataBoundLiteral control with the Text value of "Modules"
It looks like the cast from item.controls[x] is not working and hence not populating the extensionsGrid and noResultsLable objects being passed to
BindGrid(kvp.Key, extensionsGrid, noResultsLabel);
Odd that no error is thrown during the above assignment/cast...
The null ref exception is thrown at line 123
grid.ItemDataBound += extensionsGrid_ItemDataBound;
Something is strange here. BTW. All other admin tabs work i.e. security, user accounts etc...
I'd love to hear any of your thoughts on the above!
Seth