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 …… 阅读全文
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语言 25 50 数据库 100 数据结构 100 25 female 66.5 protected void Button1_Click(object sender, EventArgs e) { Label1 …… 阅读全文
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序列化(一):序列化方法和常用特性.Net Framework提供了对应的System.Xml.Seriazliation.XmlSerializer负责把对象序列化到XML,和从XML中反序列化为对象。Serializer的使用比较直观,需要多注意的是XML序列化相关的Attribute,怎么把这些attribute应用到我们的对象,以及对象公共属性上面去,生成满足预期格 …… 阅读全文
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 …… 阅读全文
protected void Page_Load(object sender, EventArgs e) { DataTable t = new DataTable(); t.Columns.Add("序号", typeof(int)); t.Columns.Add("材料", typeof(string)); t.Colum …… 阅读全文
protected void Button1_Click(object sender, EventArgs e) { MemoryStream stream = new MemoryStream(); StreamReader reader = new StreamReader(stream); GetReportRequest reque …… 阅读全文
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;namespace ConsoleSample{ class Program { static void Main(string[] args) …… 阅读全文