asp.net获取站点根目录下子目录的名称_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > asp.net获取站点根目录下子目录的名称

asp.net获取站点根目录下子目录的名称

 2015/3/15 2:54:57  hvt  程序员俱乐部  我要评论(0)
  • 摘要:使用VisualStudio建立一个.aspx文件(WebForms),例如hovertree.aspx,在页面上加入一个ListBox代码如下:<asp:ListBoxrunat="server"ID="lbKeleyiFolder"/>那么在页面上显示根目录子文件夹的代码如下:string[]m_subKeleyiFolder=Directory.GetDirectories(Server.MapPath("/hvtimg\\"))
  • 标签:.net ASP.NET 目录 net

使用Visual Studio建立一个.aspx文件(Web Forms),例如hovertree.aspx,在页面上加入一个ListBox
代码如下:

class="html" name="code"><asp:ListBox runat="server" ID="lbKeleyiFolder" />

?

那么在页面上显示根目录子文件夹的代码如下:

string[] m_subKeleyiFolder = Directory.GetDirectories(Server.MapPath("/hvtimg\\"));

int m_countHovertree = m_subKeleyiFolder.Length;
for (int i = 0; i < m_countHovertree; i++)
{
m_subKeleyiFolder[i] = m_subKeleyiFolder[i].Substring(m_subKeleyiFolder[i].LastIndexOf("\\") + 1);
}

lbKeleyiFolder.DataSource = m_subKeleyiFolder;
lbKeleyiFolder.DataBind();

?

HoverTree系统源码下载:http://hovertree.codeplex.com/

http://hvt.iteye.com/blog/2182470

上一篇: 解决Android SDK下载和更新失败的方法 下一篇: 没有下一篇了!
发表评论
用户名: 匿名