ボタン付きのフォームがあります。ボタンのイベントを使って Javascript メソッドを呼び出すとonclick
、Google Chrome と Internet Explorer で動作します。しかし、Firefox を使用するonclick
と、ボタンのイベントが Javascript メソッドを呼び出しません。
function openHistory()
{
window.open("frmCLogHistory.aspx?txtCLogID="+document.all['<%=txtCLogID.ClientID %>'].value, 'abc', 'fullscreen=no,top=10,left=100,toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=no, directories=no,location=no,width=800,height=630,titlebar=no');
}
</script>
<input type="button" name="showHistory" value="Show History"
onclick="javascript:openHistory()" style="width:120px;" class="GVButton" />