我创建了一个javascript confirm
如下。
<script Type="Text/Javascript">
function CheckListBox(lvi)
{
if(lvi == "")
{
if(confirm("Are you sure?"))
{
return true;
}
else
{
return false;
}
}
}
</script>
我需要测试ListBox.Items
控件是否为空...我已经在我的 aspx 页面上进行了参考
<script language="javascript" type="text/javascript" src="/JS/confirm.js"></script>
我想知道如何在我的aspx.cs
页面上调用它。. . 所以我可以通过parameter
:
string oi = Listbox_Clubes.Items.Count.ToString();//Its the parameter I want to pass