本文介绍了将文件夹名称发送到其他页面的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
嗨
我有这个代码从一个网格视图创建超链接
HiI Have This Code To Create Hyperlink From One Col Of Grid View
foreach (GridViewRow gr in GridViewTn.Rows)
{
HyperLink hp = new HyperLink();
hp.Text = gr.Cells[0].Text ;
hp.NavigateUrl = "ViewFiles.aspx?name=" + hp.Text +"-"+ gr.Cells[1].Text;
gr.Cells[0].Controls.Add(hp);
}
我想在页面ViewFiles.aspx列出文件夹中的所有文件名称保存在hp.text中
请帮助我
I Want In Page ViewFiles.aspx List All Files in Folder That Name is saved in hp.text
please help me
推荐答案
这篇关于将文件夹名称发送到其他页面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!