问题描述
将一个简单的HTML文件转换为SharePoint主页时遇到问题.我正在使用对网站集具有正确权限的帐户.当我上传html文件时,它已出现在编辑母版页"列表中,但未进行转换 地位.当我单击文件时,显示警告消息我们找不到转换后的文件.编辑并保存HTML设计文件后,刷新页面.
I am having a problem converting a simple HTML file to a SharePoint masterpage. I am using an account with the right permissions to the site collection. When I uploaded the html file, it has appeared in the 'Edit Master Pages' list but there was not conversion status. When I clicked the file, a warning message displayed "We couldn't find the converted file. After editing and saving your HTML design file, refresh the page".
以下是我上传的简单html文件的代码:
Below is the code for the simple html file I have uploaded:
<?xml version ="1.0" encoding ="utf-8"?>
<!DOCTYPE html []>
< html xmlns:mso =" urn:schemas-microsoft-com:office:office" xmlns:msdt =" uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"<
< head>
< meta http-equiv =与X-UA兼容"; content ="IE = 10&"; />
< link rel ="stylesheet" href =" Styles/URC Style.css" type ="text/css" />
< title></title>
</head>
< body>
< div class ="URCContainer">
< div class ="URCHeader">
</div>
< div class ="URCTopNavigation">
</div>
< div class ="URCBodyContainer">
</div>
< div class ="URCFooter""
</div>
</div>
</body>
</html>
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html[]>
<html xmlns:mso="urn:schemas-microsoft-com:office:office" xmlns:msdt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=10" />
<link rel="stylesheet" href="Styles/URC Style.css" type="text/css" />
<title></title>
</head>
<body>
<div class="URCContainer">
<div class="URCHeader">
</div>
<div class="URCTopNavigation">
</div>
<div class="URCBodyContainer">
</div>
<div class="URCFooter">
</div>
</div>
</body>
</html>
推荐答案
这篇关于SharePoint 2013设计管理器未转换文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!