可以在某些操作之前显示自定义确认对话框

时间:2012-06-16 11:31:46

标签: jquery

我正在使用ASP.NET/C#。在我的某个页面中,我要求inserting data进入database之前我需要检查ApplicationNo是否是unqiue。如果是并非唯一我需要显示confirm dialog,告知用户ApplicationNo不是唯一的。我可以使用自定义confirm dialog来实现此目的。 感谢。

1 个答案:

答案 0 :(得分:1)

您可能会使用ajax并在收到ajax调用中的数据后相应地处理您的页面。

 $.get(url,function(data){
    // once url data is fetched, use the data variable to get the response of the page content

    if (data == 'ApplicationNo') { 
       // your code to open confirm window

    }
    else {  }

 });