我有我的Facebook共享scritp:如何從數據庫中獲取價值,並插入JavaScript函數裏面
<script>
$(document).ready(function(){
$('#share_button').click(function(e){
e.preventDefault();
FB.ui(
{
method: 'feed',
name: 'This is the content of the "name" field.',
link: ' http://www.hyperarts.com/',
picture: 'http://www.hyperarts.com/external-xfbml/share-image.gif',
caption: 'This is the content of the "caption" field.',
description: 'This is the content of the "description" field, below the caption.',
message: ''
});
});
});
</script>
但是,我想要得到「名」,「鏈接」,「圖片報」的價值觀和其他人從數據庫,也許是一個簡單的訪問mbd文件。我將使用經典的ASP與此數據庫的連接...
有一種方法可以做到這一點?
此數據庫位於何處? – Aesthete
在我的網頁相同的文件夾...或在一個文件夾caled「數據庫」..位置無所謂...我想... – Preston