Hi!
I'm trying to delete MobileListItem defined in .aspx page:
<mobile:selectionlist id="List1" runat="server" selecttype="DropDown">
<item text="Some text" value="Item1" />
</mobile:selectionlist>
I'm using Remove method:
List1.Items.Remove("move");
or property Visible:
List1.Items[0].Visible = false;
But in both cases I didn't see any result.
Can anybody help me?
Roman O - 29 Nov 2004 09:03 GMT
> <mobile:selectionlist id="List1" runat="server" selecttype="DropDown">
> <item text="Some text" value="Item1" />
> </mobile:selectionlist>
>
> I'm using Remove method:
> List1.Items.Remove("move");
Sorry List1.Items.Remove("Item1");