頁面
<asp:LinkButton ID="lbtButton" runat="server" CssClass="lbtButton" Font-Underline="false" OnClick="lbtButton_Click">
js
function clickButton(filePath, fileName)
{
__doPostBack('lbtButton', '');
}
當執行該js方法,就會觸發LinkButton的點擊事件,去后台執行lbtButton_Click() 函數
