Jquery实现按钮点击遮罩加载,处理完后恢复

EasyUI加载效果 body{font-size:12px} .datagrid-mask{position:absolute;left:0;top:0;width:100%;height:100%;opacity:.5;filter:alpha(opacity=30);background-color:#e0ecff;display:none} .datagr …… 阅读全文

C#解析XML详解(XPath以及带命名空间NameSpace)

C语言 25 50 数据库 100 数据结构 100 25 female 66.5 protected void Button1_Click(object sender, EventArgs e) { Label1 …… 阅读全文

c# XML和实体类之间相互转换(序列化和反序列化)

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.IO;using System.Data;using System.Xml;using System.Xml.Serialization; /// /// Xml序列化与反序列化/// …… 阅读全文

C# XML序列化方法和常用特性

/*C#对象XML序列化(一):序列化方法和常用特性.Net Framework提供了对应的System.Xml.Seriazliation.XmlSerializer负责把对象序列化到XML,和从XML中反序列化为对象。Serializer的使用比较直观,需要多注意的是XML序列化相关的Attribute,怎么把这些attribute应用到我们的对象,以及对象公共属性上面去,生成满足预期格 …… 阅读全文

c#(asp.net) 多线程示例,用于同时处理多个任务

using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Threading;using System.Web.UI.WebControls;public partial class muti_thread : S …… 阅读全文

固定GridView标题栏,冻结列功能实现

protected void Page_Load(object sender, EventArgs e) { DataTable t = new DataTable(); t.Columns.Add("序号", typeof(int)); t.Columns.Add("材料", typeof(string)); t.Colum …… 阅读全文

获取报告 Stream转string,利用字符串分割转换成DataTable

protected void Button1_Click(object sender, EventArgs e) { MemoryStream stream = new MemoryStream(); StreamReader reader = new StreamReader(stream); GetReportRequest reque …… 阅读全文

c# 多线程传递参数以及任务

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;namespace ConsoleSample{ class Program { static void Main(string[] args) …… 阅读全文