SharePoint:为我翻译链接及其不需要的内容
我正在使用 sharepoint Web 服务插入列表项...
这是我的代码:
item += @"<Field Name=""HyperLinkField"">" + this.SharePointSiteAddressLinks + @"/lists/" + this.ListName + @"/" + this.ID + "_" + this.MessageID + ", " + this.MessageID + ".ext</Field>";
SharePointSiteAddressLinks 的值是 http://machineName
列表项被插入到列表中,但超链接的值设置为 http://localhost
首先 - 为什么SharePoint 会自动(错误地)我的链接,第二,我该怎么做才能将其关闭?
谢谢
I am inserting a list item using sharepoint web services....
Here is my code:
item += @"<Field Name=""HyperLinkField"">" + this.SharePointSiteAddressLinks + @"/lists/" + this.ListName + @"/" + this.ID + "_" + this.MessageID + ", " + this.MessageID + ".ext</Field>";
the value of SharePointSiteAddressLinks is http://machineName
The list item gets inserted into the list, but the value of the hyperlink is set to http://localhost
Firstly - why does SharePoint take it apon itself to (incorrect) my links, 2ndly what can I do to turn it off?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
重新启动服务器,一切正常......
Restarted the server, everything worked fine....