相关分类: Java技术 C/C++ VB delphi
  • 表达式树基础

    转自:http://www.cnblogs.com/tianfan/archive/2010/03/05/expression-tree-basics.html 了解 Lambda、 Lambda表达式树、IQueryableT、IEnumerableT的一篇好文章。 通过这篇文章可以知道:1.Lambda表达式树转换Sql的一个思路 2.IQueryableT和IEnumerableT的区别。...

    2018-06-17 21:08:45

  • 关于设计中的依赖倒置原则

    关于设计中的依赖倒置原则 依赖倒置原则是面向对象设计中的一条非常重要的原则,它描述在进行业务设计时,要依赖于抽象而不依赖于具体实现。若使用接口或抽象类而不是它的具体实现类来编程,则会使代码变得更稳定,从而大大提高了程序应对业务变化的能力。 例如: 把 L...

    2018-06-17 21:09:00

  • SandDock 应用示例

    直接上代码 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using TD.SandDock; namespace SalesClient{ public parti...

    2018-06-17 21:08:58

  • menu控件绑定sql数据库

    1 public int treeID; 2 3 protected void Page_Load( object sender, EventArgs e) 4 { 5 SqlConnection CN = new SqlConnection( " Data Source=.;Initial Catalog=TD;Integrated Security=True " ); 6 // 设定数据库操作命令 7 CN.Open(); 8 SqlCommand Scmd = new...

    2018-06-17 21:08:48

  • Js获取Gridview中Dropdownlist选中状态

    在Gridview中加入Dropdownlist模板列,加入DropDownlist 是一种常用的操作,其中涉及到如何获取选择项和Gridview重新绑定两个要点。 如图 前台代码如下 1 %@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication2.WebF...

    2018-06-17 21:08:27

  • Oracle 数据库维护相关

    版本升级 在维护数据库升级的过程中,会产生n个脚本。谈谈我所处的项目背景,项目数据库最早版本假定为1,最后在多次维护后,版本号,可能变更为16.那么针对项目上不同的数据库版本,如何来进行升级呢? 我使用的升级策略是,执行v1.sql,得到版本1,再执行v2.sql,得...

    2018-06-17 21:08:37

  • c# 把 颜色值Hex 转换为 Color

    原文: http://abujj.me/archives/695 Assuming you mean the HTML type RGB codes (called Hex codes, such as #FFCC66), use theColorTranslatorclass: System.Drawing.Color col = System.Drawing.ColorTranslator.FromHtml( " #FFCC66 " ); If, however you are usi...

    2018-06-17 21:08:34

  • 一个简单的ajax上传 上传进度显示

    本例用了jquery.form.js请到演示页面查看 CSS Code style form{ display : block ; margin : 20px auto ; background : #eee ; border -radius: 10px ; padding : 15px } #progre ss{ position : relative ; width : 400px ; border : 1px solid #ddd ; padding : 1px...

    2018-06-17 21:08:29

  • 本来运行的好的Ajax.dll怎么突然不起作用了

    客户中有个好多年前老项目用了Ajax.dll,前几天突然不起作用了。 问了下原因,系统从Windows Server2003 升级为 Windows Server 2008了,IIS也从6升级成7了。 解决方法: 在web.config中的system.webServer节点下添加add name="AjaxMethod" type="Ajax.PageHandlerFact...

    2018-06-17 21:07:59

  • RadioButton 和 RadioButtonList 比较

    第一次接触RadioBttonList时候,觉得这个控件完全可以取代RadioButton,操作更加简便。直到今天,完成了一个小小的功能,才发现,尺有所短不是瞎掰的。 需求如下: Add Proration Rate radio buttons. Radio button for a fixed rate Selected by default Meaning using...

    2018-06-17 21:08:03

2