当我加载页面时,我加载了这个脚本:
ScriptManager.RegisterStartupScript(this.Page, this.Page.GetType(),
"question",
"<script type = 'text/javascript'>if(confirm('Are you sure you want to do this?')) return true; else return false;</script>",
false);
我不知道当用户单击“是”在后面的代码中做某事以及单击“否”做其他事情时如何处理?
如何在后面的代码中处理这个点击?