A
aalongsmile
I retrieve a share point list in a infopath form as follows
DataSource dmt = this.DataSources[dataSourceName];
XPathNavigator xDmtRoot = dmt.CreateNavigator();
string xPath =
string.Format(@"/dfs:myFields/dfs:dataFields//dfs:{0}[{1}]", nodeName,
condition);
XPathNodeIterator nodes= xDmtRoot.Select(xPath,
this.NamespaceManager);
string s = nodes.Current.GetAttribute("Body", "");
When I read the column "Body" which contains a text with newlines, the
newlines are filtered out, though the newlines in the share point list are
still present.
Any thoughts what I do wrong? I guess it should be not a problem to retrieve
a whole text with the common special characters.
Thanks for you help
Hans
----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.
http://www.microsoft.com/office/com...2de-9436bc6258c6&dg=microsoft.public.infopath
DataSource dmt = this.DataSources[dataSourceName];
XPathNavigator xDmtRoot = dmt.CreateNavigator();
string xPath =
string.Format(@"/dfs:myFields/dfs:dataFields//dfs:{0}[{1}]", nodeName,
condition);
XPathNodeIterator nodes= xDmtRoot.Select(xPath,
this.NamespaceManager);
string s = nodes.Current.GetAttribute("Body", "");
When I read the column "Body" which contains a text with newlines, the
newlines are filtered out, though the newlines in the share point list are
still present.
Any thoughts what I do wrong? I guess it should be not a problem to retrieve
a whole text with the common special characters.
Thanks for you help
Hans
----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.
http://www.microsoft.com/office/com...2de-9436bc6258c6&dg=microsoft.public.infopath