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?
Your method accepts a
ListViewand your object is of typeListBox. Perhaps the “not working” thingy stems from this difference?In general, there’s nothing wrong in passing your control to another method, but the types must match of course.