如何從SPListTemplateCollection(SharePoint 2007)填充下拉列表控件(ASP.NET)?如何填充下拉列表控件集合?
SPWeb web = SPContext.Current.Web;
ddlTemplateList = new DropDownList();
ddlTemplateList.DataSource = web.ListTemplates;
ddlTemplateList.DataBind();
此代碼無法正常工作...列表模板的名稱未顯示。
我用你的代碼,但是當我部署我的項目,一個錯誤在SharePoint網站上occure。 – ThisIsIgorae 2011-06-02 15:37:07
在可能的情況下始終提供錯誤!沒有它,我們無法幫助你! – danyolgiax 2011-06-02 15:38:45
對不起,但該消息並不是非常有用:「發生了意外錯誤。」 – ThisIsIgorae 2011-06-02 15:42:09