I have a class in a separate file (stripped out a lot for simplicity)
public class navigation
{
// Adds to menu
public static void addMenuToList(ListView parent)
{
parent.Items.Add(newItem);
}
}
Where parent is a control on my .net page:
<asp:ListBox SelectionMode="Single" Rows="8" id="parent" runat="server" CssClass="tbox widebox">
How do I pass the control to the function so it can be accessed?
navigation.addMenuToList(parent);
This doesn't seem to work. Am I going about it wrong?