0
我有一個上傳控件從Kentico具有EventHandler
從服務器端代碼Telerik的ASP.NET Ajax的更新控制
upload.OnUploadFile += new EventHandler(upload_OnUploadFile);
這EventHandler
叫,我想從Telerik的更新一個RadTreeView
一個節點像這樣
void upload_OnUploadFile(object sender, EventArgs e)
{
AttachmentsControl uploadControl = sender as AttachmentsControl;
treeView.SelectedNode.Attributes["Image"] = uploadControl.Value.ToString();
}
的問題是,上傳控件創建試圖RadAjaxManager
使用AjaxSettings
當動態,所以我有問題。
RadAjaxManager1.AjaxSettings.AddAjaxSetting(upload, treeView);
的代碼不會工作,因爲我使用的是LoadControl
方法不創建類的實例。總之有沒有一種奇特的方式來完成這個?
這不是重點,上傳工作,樹視圖工作,我需要的是一種方式來更新樹視圖,當上傳完成後,就像我解釋的。 –