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