c#代码后面的确认消息框

时间:2012-08-08 10:39:06

标签: c# asp.net .net

  

可能重复:
  Confirmation message box in webapplication

我想在后面的代码中创建一个消息框。我的代码在这里。它没有显示任何消息框。请帮我这样做..

Button btn = new Button();
btn.OnClientClick = "return confirm('Your requested leave count exceeds the balance leave count.\n It may count as Loss of pay if your requeset approved by your head...\n \nAre you sure you wish to apply?');";
if (true)
{
  //Do something;
}
else
{
  //do something;
}

1 个答案:

答案 0 :(得分:2)

返回的值只能在客户端中使用 - 在javascript中 - 你真的应该在ClientClick事件上调用一个javascript函数,它可以获取返回值并将其发送到你的服务器(可能使用AJAX)。