我正在尝试从用户那里获得确认,并根据我们想要执行代码的用户响应。
我们正在对用户输入进行一些操作。 根据用户输入,我们向用户显示确认框以进行确认。 如果用户输入yes,那么我们必须执行不同的代码,如果用户说不,那么我们必须执行差异代码。
目前我们使用了MessageBox.Show(“”),但这并不好。
if(confirmation yes)
{
//execute this code.
}
else
{
//execute this.
}
请建议。
答案 0 :(得分:0)
而不是MessageBox只需使用javascript
if(confirm('Are you Sure'))
{
//execute code here or call your server method for 'Yes'
}
else
{
//execute code here or call your server method for 'No'
}