3
我想從我的代碼隱藏中調用一個javascript函數。 在我的按鈕單擊事件處理程序,我有:from page * .aspx.cs call javascript function
protected void load_data_Click(object sender, EventArgs e)
{
if (dt.Rows.Count == 1)
{
BindDl();
}
else
{
//if dt.rows.count! = 1 I want to call a JavaScript function where be one alert! how to do?
}
}