HtmlTrInfo element
Applies to: SharePoint 2016 | SharePoint Foundation 2013 | SharePoint Online | SharePoint Server 2013
Used in the HtmlTransInfo.xml file (\Program Files\Common Files\Microsoft Shared\web server extensions\12TEMPLATE\XML
) to contain mapping instructions for directing a request to the URL for handling a request when the client computer does not have the 2007 Microsoft Office system installed.
<HtmlTrInfo>
<Mapping
AcceptHeader = "Text"
Extension = "Text"
HandlerUrl = "Text"
ProgId = "Text" />
...
</HtmlTrInfo>
Elements and attributes
The following sections describe attributes, child elements, and parent elements.
Attributes
None
Child elements
Parent elements
None
Remarks
When the client computer does not have the Office application installed, Microsoft SharePoint Foundation creates an HTML rendition of the page by using a converter program on the server.
Example
The following example shows the instructions used in the HtmlTransInfo.xml file.
<HtmlTrInfo>
<Mapping Extension="xls" AcceptHeader="application/vnd.ms-excel"
HandlerUrl="HtmlTranslate.aspx" />
<Mapping Extension="doc" AcceptHeader="application/msword"
HandlerUrl="HtmlTranslate.aspx" />
<Mapping Extension="ppt" AcceptHeader="application/
vnd.ms-powerpoint" HandlerUrl="HtmlTranslate.aspx" />
<Mapping Extension="pps" AcceptHeader="application/
vnd.ms-powerpoint" HandlerUrl="HtmlTranslate.aspx" />
</HtmlTrInfo>