-2

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

4

1 回答 1

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 {  }

 });
于 2012-06-16T11:35:03.937 回答