function go()
{history.go(-1);}<td class="general_font" style="height: 16px">
<asp:LinkButton ID="lbtn_go" runat="server" OnClientClick="go()" ><img src="../pic/sample01.gif" width="12" height="13" border="0" align="absmiddle" /> 返回</asp:LinkButton>
</td>
<td class="general_font" style="height: 16px">
     <input type="button"  onclick="go()" value="返回"/>
</td>
为什么红色部分能正确调用JS实现返回上一页,而  OnClientClick="go()"  不能实现返回?