How can I pass a ASP.NET server control to a function?
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 ListView
and your object is of type ListBox
. 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.
Doh!
Pass ListBox not ListView then it works fine :)
Sorry for wasting everyones time.
精彩评论