09 2007 档案

摘要:转自:http://community.csdn.net/Expert/TopicView3.asp?id=5729506数据库中有张表格如下工资 福利 奖金1月 100 200 3002月 110 210 3103月 120 220 3204月 130 230 330我想得到的结果是1月 2月 3月 4月工资 100 110 120 130福利 200 210 220 230奖金 300 310... 阅读全文
posted @ 2007-09-25 11:03 WEBBER 阅读(1080) 评论(1) 推荐(0)
摘要:转自:http://blog.joycode.com/ghj/archive/2004/06/15/24612.aspx如果你使用的数据库连接类是 the Data Access Application Blocks "SqlHelper" 或者 SqlClient Class , 你在执行一个很费时的SQL 操作时候,可能就会碰到下面的超时异常。 ------------------------... 阅读全文
posted @ 2007-09-17 16:02 WEBBER 阅读(1688) 评论(0) 推荐(0)
摘要:我使用的是微软的dll在webconfig里是这样设置的<configSections> <section name="RewriterConfig" type="URLRewriter.Config.RewriterConfigSerializerSectionHandler, URLRewriter" /> </configSections> <Rew... 阅读全文
posted @ 2007-09-11 15:16 WEBBER 阅读(348) 评论(2) 推荐(0)
摘要:转自:http://www.nickyma.com/blog/article.asp?id=155本文将通过实例比较ASP.NET下的三种典型URL重写方案——ISAPI重写(使用开源组件IIRF),ASP.NET2.0内置的urlMappings和基于自定义HTTPModule的URL重写(使用NBear.Web中的UrlRewriteModule实现),并探讨URL重写中可能遇到的陷阱及处理办... 阅读全文
posted @ 2007-09-11 14:12 WEBBER 阅读(797) 评论(0) 推荐(0)
摘要:Request.ServerVariables("Url")返回服务器地址Request.ServerVariables("Path_Info")客户端提供的路径信息Request.ServerVariables("Appl_Physical_Path")与应用程序元数据库路径相应的物理路径Request.ServerVariables("Path_Translated")通过由虚拟至物理的映射后... 阅读全文
posted @ 2007-09-06 16:25 WEBBER 阅读(206) 评论(0) 推荐(0)