我试图从一个按钮调用一个函数,但是当我按下按钮时,它表示没有声明该名称的函数。
这是我的按钮代码:
<asp:TextBox ID="DateOutTxt" runat="server" Width="80px"></asp:TextBox><asp:ImageButton
ID="ImageButton5" runat="server" BorderStyle="None" ImageUrl="~/icons/vwicn063.gif"
OnClientClick="PopupPicker(DateOutTxt, 250, 250);" Width="21px" /></td>
这是我要调用的函数:
<script language ="javascript" type ="text/javascript">
function PopupPicker(ctl, w, h) {
var PopupWindow = null;
settings = 'width=' + w + ',height=' + h + ',location=no,directories=no, menubar=no,toolbar=no,status=no,scrollbars=no,resizable=no,dependent=no';
PopupWindow = window.open(<%= getServerName.getserverName("/Quoteman/DatePicker.aspx?Ctl=") %>);
PopupWindow.focus();
}
</script>
我目前在标签底部有脚本标签,但我尝试将它放在标签中和标签下方。我似乎找不到问题所在。
语言是 ASP.Net 和 Javascript。那里还有一个对 VB.Net 函数的调用。