通过编码将项目添加到现有 SharePoint 列表
我想通过自编码将项目添加到仍然存在的 SharePoint 列表。
所以我在互联网上搜索并找到了很多如何创建列表、添加项目等的信息。
SPWeb mySite = SPContext.Current.Web;
SPListItemCollection listItems = mySite.Lists[TextBox1.Text].Items;
SPListItem item = listItems.Add();
编码看起来很简单,但是我必须将代码放在哪里? 我编写了 Web 部件并将它们部署到我的 Web 应用程序中。 这没问题,但这里我缺少一种方法。
我正在使用 VisualStudion 2008 和 SharePoint WSS 3.0
感谢您的帮助。
I want to add items to a still existing SharePoint list by self-coding.
So I searched the internet and found a lot of information how to create lists, add items and so on..
SPWeb mySite = SPContext.Current.Web;
SPListItemCollection listItems = mySite.Lists[TextBox1.Text].Items;
SPListItem item = listItems.Add();
The coding seems easy, but where i have to put the code?
I programmed Web Parts and deployed these to my web application.
This was no problem, but here i am missing an approach.
I am using VisualStudion 2008 and SharePoint WSS 3.0
Thank you for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这取决于目的——你为什么这样做?
It depends on the purpose - why are you doing this?
您正在网站上进行一些修改...因此之后我们需要更新网站..使用 ListItem.update();
you are doing some modification on site ...so after that we need to update the site ..Use ListItem.update();