SharePoint 2010でASPインクルードを使用するためのある種の方法を実装する方法を理解するのに非常に苦労しています。それができない場合は、別の方法で私を助けてください。
解決策を見つけましたが、完全に満足しているわけではありません。
============ HTML ============
<div class="js-include" title="test.html"></div>
============ JQUERY ============
$(function () {
//Trigger global pages
$(".js-include").each(function(){
var inc=$(this);
$.get(inc.attr("title"), function(data){
inc.replaceWith(data);
});
});});