摘要:
几种Code Value Web输入的解决方案 http://files.cnblogs.com/neozhu/AutocompletedSetKeyValue.rar 在实际应用系统开发过程中会经常遇到的情况是在做数据库设计的时候为了满足第二范式消除数据冗余和数据的一致性,就会存在类似单位,币值等基础代码的维护,通常情况基础代码库设计是Key Description这样的结构,对于业务实例会保... 阅读全文
摘要:
Complete C# code: ---------------- using System; using System.ComponentModel; using System.Configuration; using System.Web.UI; using System.Web.UI.WebControls; namespace CustomGridView { /// /// Su... 阅读全文
摘要:
In this article I will be discussing how you can use client side javascript to access values in specified row and column of GridView control without doing any post back. I have discussed in my previou... 阅读全文
摘要:
In my previous post which was relating to implementing dialog box in web based application, I have provided some examples to popping up a dialog box using showModalDialog javascript function. In that ... 阅读全文
摘要:
Introduction GridView is a new data bound control introduced by Microsoft in Visual Studio .NET 2005. Most of the operations like sorting, paging and selecting items from the GridView are already bui... 阅读全文
摘要:
Introduction This article shows a modal popup dialog window which passes and returns multiple parameters. This sample creates parent and child webforms. The child webform is called modally by the par... 阅读全文
摘要:
Pass Multiple Values from a GridView to Another Page using ASP.NET A common requirement in our projects is to select a GridView row and pass multiple values of the selected row to another page. I r... 阅读全文
摘要:
Using ASP.NET and jQuery to Pass Multiple Values from a GridView to Another Page In one of our previous article Pass Multiple Values from a GridView to Another Page using ASP.NET, we had seen how t... 阅读全文
摘要:
原文 http://www.codeplex.com/AppArchGuide 本人英语水平较差献丑了 :) 框架设计指导方针 目的 1明白软件架构的概念 2学习软件架构中的关键的设计原则 3学习软件架构中的关键特性 概述 软件体系框架经常被描述为软件系统的结构或是组织,而软件系统就是把各个功能组件整个在一起,完成特定的功能或者一套职能.换句话说,软件架构的重点是把各功能组件组... 阅读全文
摘要:
public class ANSIConversionAPI { const int SIMPLIFIED_CHINESE = 0x02000000; const int TRADITIONAL_CHINESE = 0x04000000; [DllImport("ker... 阅读全文