摘要:
WCF进阶:扩展EndpointBehavior实现全局参数验证摘要: 上一篇文章WCF进阶:扩展bindingElementExtensions支持对称加密传输阐述了如何扩展BindElementExtension来支持在配置文件中配置服务或者客户端代理,本文讲述另外一种应用,通过实现IEndpointBehavior来全局验证操作参数,并且进一步产生比较复杂的配置支持的实现。阅读全文posted @2010-04-18 19:31Robin Zhang 阅读(2448) |评论 (5)编辑WCF进阶:扩展bindingElementExtensions支持对称加密传输摘要: 前面两篇文.. 阅读全文
摘要:
delete from ItemForScore where ifsid not in (select min(ifsid) from ItemForScore group by itemid,topflag,isactive having COUNT(-1)>1) and itemid in (select itemid from ItemForScore group by itemid having COUNT(-1)>1)例如: id name value 1 a pp 2 ... 阅读全文
摘要:
// ===============================================================================// Microsoft Data Access Application Block for .NET// http://msdn.microsoft.com/library/en-us/dnbda/html/daab-rm.asp//// SQLHelper.cs//// This file contains the implementations of the SqlHelper and SqlHelperParameterCa 阅读全文
摘要:
if (blIsUser) { //将用户名称存入cookie FormsAuthentication.SetAuthCookie(strLogName, false); if (IsAdmin(strLogName)) { Response.Redirect("AdminGround/adminmain.aspx"); } else { Response.Redir... 阅读全文