Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从 Sharepoint 2010 中的列表中删除字段?
请问有什么帮助吗?
我假设您的意思是使用代码。这段代码应该可以解决问题。
SPWeb web = SPContext.Current.Web; SPList list = web.Lists["List Name"]; SPField field = list.Fields["Field Name"]; field.Delete();
只需转到您的列表,转到列表设置(在功能区中),向下滚动到您的字段(列)并将其删除。
没什么大不了的。
此致!