Skip to main content
added 5 characters in body
Source Link
Arsalan Adam Khatri
  • 14.6k
  • 3
  • 38
  • 59

You can try replacing this line:

xsl:value-of select="@Body" disable-output-escaping="yes"/>

<xsl:value-of select="@Body" disable-output-escaping="yes"/> 

with

SharePoint:AppendOnlyHistory FieldName="Body" runat="server" ControlMode="Display" ItemId="{@ID}"/>

<SharePoint:AppendOnlyHistory FieldName="Body" runat="server" ControlMode="Display" ItemId="{@ID}"/> 

ControlMode can be changed to Add or Edit as per requirements

You can try replacing this line:

xsl:value-of select="@Body" disable-output-escaping="yes"/>

with

SharePoint:AppendOnlyHistory FieldName="Body" runat="server" ControlMode="Display" ItemId="{@ID}"/>

ControlMode can be changed to Add or Edit as per requirements

You can try replacing this line:

<xsl:value-of select="@Body" disable-output-escaping="yes"/> 

with

<SharePoint:AppendOnlyHistory FieldName="Body" runat="server" ControlMode="Display" ItemId="{@ID}"/> 

ControlMode can be changed to Add or Edit as per requirements

Source Link
Arsalan Adam Khatri
  • 14.6k
  • 3
  • 38
  • 59

You can try replacing this line:

xsl:value-of select="@Body" disable-output-escaping="yes"/>

with

SharePoint:AppendOnlyHistory FieldName="Body" runat="server" ControlMode="Display" ItemId="{@ID}"/>

ControlMode can be changed to Add or Edit as per requirements