摘要:
isnull函数 描述:如果A不为空,使用A,否则,使用B select case when A is not null then A else B end as '结果' from table isnull(A,B)可实现,表示 如果A为空的话用B代替 sql语句: select isnull(A 阅读全文
摘要:
razor页面 <script type="text/javascript"> function ConfirmDelete(a) { if (confirm("Are you sure you want to delete this vehicle?")) { $.ajax({ url: '@Ur 阅读全文