有没有办法在 cal 后面从 javascript 警告框中编写代码。我在网格视图上使用一个按钮。单击它时..它应该提醒一个确认框...然后对代码背后的功能进行校准。这是 cal 背后的代码部分。
protected void GridView1_RowDataBound(object source, GridViewRowEventArgs e)
{
......
btnAlertStatus.Attributes.Add("onclick", "javascript:if(confirm('Are you sure you want to send an email " + ID+ " ?') == true) EmailTest(ID); ");
......
}
protected void EmailTest(int ID)
{
}
这样我就无法访问 send_Email....有没有更好的方法来在 rowboundevent 中调用这个函数