最新文章列表

C#利用委托实现窗体间的值传递

C#利用委托实现窗体间的值传递  A、网上有很多方法,大家可搜一下,都可用。B、这里只是说明下是只利用委托,学习基本的委托运用。方法如下:1、C#建立一个默认工程,默认窗体Form12、加入一个新窗体,默认Form23、Form1窗体上放一个Label,一个Button,属性分别为:this.label1.Text = ""; // 清空label的值this. ...
pcajax 评论(0) 有1024人浏览 2011-06-11 15:31

lambda表达式5

示例数据库   字段名 字段类型 允许空 字段说明 ID uniqueidentifier   表主键字段 UserName varchar(50)   留言用户名 PostTime datetime   留言时间 Message varchar(400) √ 留言内容 IsReplied bit   留言是否回复 Reply va ...
wavaya 评论(0) 有1229人浏览 2011-06-08 12:29

C#中循环结构的效率问题

  C#中循环结构的效率问题   引言 顺序、选择、循环是一切程序的三大结构。今天我们就来说一说循环中的一个小问题。 内容 c#的循环结构有四种: for while…do… do…while… foreach 在这四种结构中,都有循环结束的判断。大于某个数字,小于某个数字,或者是其他条件表达式的判断。今天我们就说一下关于数字的判断。 我们的数字可能存 ...
virusswb 评论(0) 有1026人浏览 2011-06-08 11:32

lambda表达式4

查看命令 Default3.aspx.cs using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using DannyWeb; using System.IO ...
wavaya 评论(0) 有775人浏览 2011-06-05 20:49

lambda表达式3

强类型DataContext NorthwindDataContext.cs using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Data.Linq; using System.Data; namespace DannyWeb { ...
wavaya 评论(0) 有656人浏览 2011-06-04 21:15

lambda表达式2

DataContext     DataContext类型(数据上下文)功能:     1.以日志形式记录DataContext生成的SQL     2.执行SQL(包括查询和更新语句)     3.创建和删除数据库 DataContext是实体和数据库之间的桥梁。 定义实体类 Customer.cs using System; using System.Collections.Gener ...
wavaya 评论(0) 有695人浏览 2011-06-03 22:21

验证码

using System; using System.Linq; using System.Data; using System.Configuration; using System.Collections; using System.Collections.Generic; using System.Web; using System.Web.Security; using System.Web ...
lxy7230512 评论(0) 有649人浏览 2011-06-03 14:55

lambda表达式1

Lambda表达式 Sample 1 using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { public delegate int mydg(int a,int b); publi ...
wavaya 评论(0) 有776人浏览 2011-06-03 09:01

linq中如何在join中指定多个条件

借助于匿名类型:  public ActionResult Edit(int id)        {            using (DataContext db = new DataContext(ConfigurationManager.ConnectionStrings["sqlConnection"].ConnectionString))            ...
冷寒冰 评论(0) 有2488人浏览 2011-06-02 18:03

LINQ to XML使用示例

今天看到一个示例里面使用了linq to xml感觉很简单,linq这次要实践下了,要做个东西。不过得不得用xml还不知道,用sql 的话还要看下linq to sql。示例是VB-Report7(在日本要卖8.19W)里面的。这个工具可以不管你的excel格式怎么变,内容都不变,打印出来的数据都是一样的。只是格式不一样而已。现在正在学习。   <?xml version='1.0' ...
jonsion 评论(0) 有123人浏览 2011-06-02 13:45

在母版页和子页面之间传递数据

在母版页和子页面之间传递数据 引入数据 MyMasterPage.master <%@ Master Language="C#" AutoEventWireup="true" CodeFile="MyMasterPage.master.cs" Inherits="MyMasterPage" %&g ...
wavaya 评论(0) 有2351人浏览 2011-06-01 15:20

Linq To XML:用名称查找元素

XElement firstParticipant; // A full document with all the bells and whistles. XDocument xDocument = new XDocument( new XDeclaration("1.0", "UTF-8", "yes"), ...
61party 评论(0) 有580人浏览 2011-04-21 17:01

Linq To XML:在结点下查询某一类型结点

下面的方法是查询 element 元素类型的结点 XElement firstParticipant; // A full document with all the bells and whistles. XDocument xDocument = new XDocument( new XDeclaration("1.0", "UTF-8 ...
61party 评论(0) 有634人浏览 2011-04-21 16:15

Linq To XML:论XStreamingElement与XElement的不同

XStreamingElement 从名字上面,已经能看出它是使用流的模式来创建Element 看到它的MSDN在线文档(http://msdn.microsoft.com/zh-cn/library/system.xml.linq.xstreamingelement(v=vs.95).aspx#Y200) 是这么解释的 XElement 在操作结点时,是把变量加到结点上,而XStream ...
61party 评论(0) 有629人浏览 2011-04-21 11:06

Linq To XML把对象数组写入xml

enum ParticipantTypes { Author = 0, Editor } class BookParticipant { public string FirstName; public string LastName; public ParticipantTypes ParticipantType; ...
61party 评论(0) 有708人浏览 2011-04-19 17:02

silverlight调用exe程序

一定要在项目中添加引用Microsoft.CSharp 这里是打开写字板程序 using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Runtime.InteropServices.Automation; using System.Window ...
61party 评论(0) 有675人浏览 2010-11-26 15:10

《Ext JS高级程序设计》节选: 一个结合DataWrite和RowEditor的Grid示例(2)

在定义中,需要监听 beforeedit 事件,其作用是判断当前编辑状态是增加新记录还是编辑原有记录,如果是增加新记录,则 cid 字段的输入框需要处于允许编辑状态。否则, cid 字段的输入框需要处于不允许编辑状态。因为当新增一个记录时, Sotre 记录集中的每个记录的关键字使用的是 id 的值,而不是 cid 的值,虽然在新增操作成功后,会根据服务器端返回的记录修改这个 ...
yesjavame 评论(0) 有542人浏览 2009-10-30 21:17

两个List的交集,补集

用linq是很好实现的 using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleProgram { class Program { static void Main(string[] args) { var ...
61party 评论(0) 有859人浏览 2009-09-22 10:28

在后台把DataTable组织成JSON,送到前台动态填充UltraWebGrid

使用的库是:Newtonsoft.Json 为asp.net 3.5开发的 Beta4版本,获取数据库数据用的是 Microsoft EnterpriseLibrary 4.1 其中扩展了这个库的功能,使之最适合把DataTable,DataSet,DataRow转为JSON模式 另外使用了Jquery的$.getJSON来解析后台传过来的JSON格式 另参考了:http://blog.cs ...
61party 评论(0) 有526人浏览 2009-08-29 22:56

使用Dynamic LINQ实现Ext Grid的远程排序

<!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:PunctuationKerning /> <w:DrawingGridVerticalSpac ...
yesjavame 评论(0) 有788人浏览 2009-04-15 17:23

最近博客热门TAG

Java(141747) C(73651) C++(68608) SQL(64571) C#(59609) XML(59133) .net(54785) 编程(39454) JSP(37542) 数据结构(36423) Eclipse(31254) PHP(29988) F#(26079) 算法(24867) 脚本(19840) J#(18922) JDBC(17888) ASP(17480) JDK(14881) JVM(14450)

博客人气排行榜

    博客电子书下载排行

      >>浏览更多下载

      相关资讯

      相关讨论

      Global site tag (gtag.js) - Google Analytics