谷歌文档 电子表格 asp.net
我正在使用 .net 的 google docs 电子表格 API,我想使用 asp.net C# 在 google 文档中插入新行,但我无法做到这一点。
任何人都可以帮助我吗?
i am using google docs spreadsheet API for .net and i want to insert new row the google docs using asp.net C# i am unable to that.
Any one can help me??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您确实发布了已有的代码,那么我们也许能够专门为您提供帮助。
根据 Google 开发者指南(此处):
< strong>添加行
要在基于列表的提要中插入新行,请首先构造一个新的 ListEntry 并设置其 Elements 属性以包含该行中的单元格。例如,给定代表现有行的 ListEntry,您可能会提示用户输入每列的值,如下所示:
然后在 ListFeed 中插入新行,如下所示:
电子表格在出现的最后一行之后立即插入新行基于列表的提要,也就是说紧接在第一个完全空白行之前。此代码相当于向 URL: 发送经过身份验证的 POST 请求,
并在 POST 正文中包含相应的 XML 文档。
谢谢。
If you do post what code you have already then we may be able to specifically help you.
According to the Google Developer's Guide (here):
Add a row
To insert a new row in a list-based feed, first construct a new ListEntry and set its Elements property to contain the cells in the row. For example, given the ListEntry that represents an existing row, you might prompt the user for the values of each column as follows:
Then insert the new row in the ListFeed as follows:
Spreadsheets inserts the new row immediately after the last row that appears in the list-based feed, which is to say immediately before the first entirely blank row. This code is equivalent to sending an authenticated POST request to the URL:
with the corresponding XML document in the POST body.
Thanks.