编写一个 asp.net 文件管理器。
本质上,用户单击 TreeView 控件中的文件夹,该文件夹中的文件显示在 ListView 控件中。
列表视图
<asp:listview id="lvFiles" runat="server" onitemdeleting="lvFiles_ItemDeleting"
onselectedindexchanging="lvFiles_SelectedIndexChanging">
<layouttemplate>
<table cellpadding="2" width="520px" border="1" id="tbl1" runat="server">
<tr id="Tr1" runat="server" style="background-color: #98FB98">
<th id="Th0" runat="server"></th>
<th id="Th1" runat="server">Filename</th>
<th id="Th2" runat="server">Uploaded</th>
<th id="Th3" runat="server">Last Accessed</th>
</tr>
<tr runat="server" id="itemPlaceholder" />
</table>
<asp:datapager id="DataPager1" runat="server" pagesize="25">
<fields>
<asp:nextpreviouspagerfield buttontype="Button" />
</fields>
</asp:datapager>
</layouttemplate>
<emptyitemtemplate>
<p>No items</p>
</emptyitemtemplate>
<itemtemplate>
<tr runat="server">
<td><asp:linkbutton id="itemSelected" runat="server" tooltip='<%# Eval("FullName") %>' autopostback="True" commandname="select" text="Select" />
</td>
<td><asp:label id="fNameLabel" runat="server" text='<%# Eval("Name") %>'></asp:label>
</td>
</tr>
</itemtemplate>
<selecteditemtemplate>
<tr id="Tr2" runat="server">
<td>Selected</td>
<td><asp:label id="fNameLabel" runat="server" text='<%# Eval("Name") %>'></asp:label>
</td>
<td><asp:button id="btnDelete" runat="server" text="Delete" commandname="Delete"></asp:button>
</td>
</tr>
</selecteditemtemplate>
</asp:listview>
绑定文件列表
所以目前发生的情况是TreeView_SelectedNodeChanged
,应用程序使用方法获取DirectoryInfo
由 表示的对象TreeNode
并获取对象数组。FileInfo
DirectoryInfo.GetFiles()
这FileInfo[]
将传递给以下方法。
protected void AddFilesToViewPort(FileInfo[] Files)
{
List<FileInfo> fList = new List<FileInfo>();
for (int i = 0; i < Files.Length; i++)
{
fList.Add(Files[i]);
}
lvFiles.DataSource = fList;
lvFiles.DataBind();
upExistingFiles.Update();
}
它将绑定FileInfo[]
到ListView
对象 ,lvFiles
这几乎正是我想要的。
我想要做的是能够在 ListView 中选择一个项目(目前可以完成),然后当用户按下Delete
按钮时,我希望应用程序能够处理相关文件。本质上,我想将文件移动到“已删除文件”目录并将操作记录在数据库中。
我遇到的问题是获取FileInfo
与我选择的列表项关联的实际对象。
如果我将调试器附加到并逐步执行,则lvFiles_ItemDeleting
事件正在触发,并且我得到了ListItem
应有的选定索引,但是当我通过调试器中的对象时,关于对象的实际信息ListItem
代表只是不在那里。
正如您在上图中所见, 的 DataKeys 属性包含ListView
有关其项目的一些信息,但是当我深入研究该属性时,这些信息不存在。
如何FileInfo
从 selected 中获取对象ListViewItem
?