网
我的 aspx 文件中有以下 BulletedList
<asp:BulletedList ID="DocumentList" runat="server"
DisplayMode="LinkButton" onclick="DocumentList_Click">
<asp:ListItem Value="Documents/testpage.pdf" Text="testpage.pdf" >test page</asp:ListItem>
<asp:ListItem Value="Documents/testpage2.pdf" Text="testpage2.pdf">test page 2</asp:ListItem>
</asp:BulletedList>
我想要做的是在我的 CS 文件中,我想评估以下内容
Sting filepath = // here i want to get the ListItem Value
Sting filename = // here i want to get the file name present in Listitem text.
我如何在下面的按钮单击事件中获得上述两个值。
protected void DocumentList_Click(object sender, BulletedListEventArgs e)
{
}