單擊時我想刪除directory
當其在hyperlink
。我試圖像below.But我的網頁重定向到default(start) page
點擊和directory
不會刪除。刪除一個目錄超鏈接
protected void Page_Load(object sender, EventArgs e)
{
Execute(s,Content,k,j);
}
private void Execute(string path,string cont,string sym,string space)
{
foreach (var directory in new DirectoryInfo(path).GetDirectories())
{
string f = directory.FullName;
f = Server.UrlPathEncode(f);
Response.Write("<a href =''" + "onclick='Delete(" + f + ")'> DELETE </a>");
Execute(directory.FullName,cont1,sym1,space1);
}
}
private void Delete(string path)
{
DirectoryInfo DirDel = new DirectoryInfo(path);
DirDel.Delete();
}
你能告訴我這段代碼的問題嗎?
如何將它寫入.cs文件? – Naresh
@ ILLUMINATI7590:''tag中的部分將作爲您的頁面類的一個方法放入您的單獨.cs文件中。你仍然需要aspx頁面。請參閱http://asp.net-tutorials.com/basics/code-behind/ –
我知道這一點,但我想在需要的地方動態創建linkbutton,並且如何將路徑傳遞給LinkButton_Click。 – Naresh