摘要: 1. 无法激活安全认证服务【页面错误信息】:发生意外错误。【日志错误信息】:Request for security token failed with exception: System.ServiceModel.ServiceActivationException: 无法激活请求的服务“http://localhost:32843/SecurityTokenServiceApplication/securitytoken.svc/actas”。有关详细信息,请参阅服务器的诊断跟踪日志。 Server stack trace: 在 System.ServiceModel.Channels.H 阅读全文
posted @ 2013-01-10 13:53 717806198 阅读(1001) 评论(0) 推荐(0) 编辑
摘要: 最近做报销单,由于用到工作流,设置了基类RequestMaster,而在报销类中继承之,在向数据库中添加数据时总是没有值,很奇怪就调试下看,可是在向父类传递的时候是有值的,但是到父类方法中操作时就没了,找了很久才发现原来在报销单实体类中没有写序列化标志[Serializable],加了序列化标志该问题就消失了 阅读全文
posted @ 2013-01-10 10:48 717806198 阅读(314) 评论(0) 推荐(0) 编辑
摘要: public static DateTime Str2Date(string value) { if (string.IsNullOrEmpty(value)) return DateTime.MinValue; else { DateTimeFormatInfo dtFormat = new DateTimeFormatInfo(); dtFormat.ShortDatePattern = "dd-MM-yy"; ... 阅读全文
posted @ 2013-01-10 10:30 717806198 阅读(175) 评论(0) 推荐(0) 编辑