ボタンクリック時にアラートボックスを生成したい。私はこのように書いています
protected void btn_submit_click(object sender, ImageClickEventArgs e)
{
btn_submit.OnClientClick = @"return confirm('Student has not completed all the steps? Are you sure you want to submit the details?');";
bool type = false;
if(type==true)
{
//If clicks OK button
}
else
{//If clicks CANCEL button
}
}
アラート ボックスが正しく表示されます。しかし、コードビハインドから値を取得するにはどうすればよいですか?助けてください。