摘要:
在数据类型转换中,C#相对其它语言来说是比较严格的,要求显式进行数据转化。 为了操作方便,C#也提供了一种is操作符进行转换,十分方便,它自动检查时局是否和类型兼容,并返回结果。而且它不会抛出异常。如果对象引用为null,则is总返回false。 if (cls1 is Class2) { Clas... 阅读全文
摘要:
Default.aspx页面: Are you Ready? Default.cs页面 using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; usin... 阅读全文
摘要:
事务处理是在数据处理时经常遇到的问题,经常用到的方法有以下三种总结整理如下: 方法1:直接写入到sql 中 在存储过程中使用 BEGIN TRANS, COMMIT TRANS, ROLLBACK TRANS 实现 begin trans declare @orderDetailsError int,@procuntError int delete from [order details] whe... 阅读全文