- 博客(9)
- 资源 (2)
- 收藏
- 关注
原创 Linq操作符GroupBy的使用
今天终于弄懂了Linq的GroupBy操作符,下面和大家分享一下! 新建一个实体类Book usingSystem; usingSystem.Collections.Generic; usingSystem.Linq; usingSystem.Text; namespaceMyLinqPro { /// /// 图书实体类 /// [
2012-12-10 19:28:53 430
原创 使用JavaScript防止页面内容被赋值,可兼容多个浏览器
var omitformtags=["input", "textarea", "select"] omitformtags=omitformtags.join("|") function disableselect(e){ if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1) return false; }
2012-12-06 18:04:00 566
原创 C#下载文件时防止文件名出现中文乱码
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Web; using System.Web.UI; using System.Web.UI.WebControls;
2012-12-04 14:11:55 11782
原创 C# 32位MD5加密
using System; using System.Text; using System.Security.Cryptography; /// /// 32位MD5加密 /// /// /// public string to32MD5(string str) { MD5 md5 = MD5.Cr
2012-10-17 15:53:30 757
原创 C# Base64加密与解密
加密: byte[] bytes = Encoding.Default.GetBytes("Base64加密"); ltResult1.Text = Convert.ToBase64String(bytes); 加密后的结果为:ltResult1.Text的值为:QmFzZTY0vNPD3A== 解密: byte[] bytes = Convert.
2012-10-14 12:26:07 2192
原创 在页面中嵌套Ifram框架,页面的高度会随着iframe中内容的高度改变而改变
需要嵌套iframe内容的页面: 浏览页面后,发现高度没有自动适应,如图: 这时需要在iframe嵌套引用的页面CommunicationContentList.aspx加上页面加载事件 使得整个页面的高度随着CommunicationContentList.aspx中内容高度的改变而改变 将CommunicationConte
2012-08-30 12:09:02 5543
原创 asp:FileUpload的高级应用一(在选择完需要上传的图片后,能在页面够及时地预览到该图片)
function display(abc) { var imgLogo = document.getElementById("imgLogo"); if (imgLogo != null) { imgLogo.style.display = "none"; }
2012-08-30 11:38:26 4968 1
原创 使用Linq操作XML数据
第一步:创建一个ASP.NET项目,项目名称为“MyLinqPro”,新建一个名为” XMLPage.aspx”的aspx页面。整个解决方案资源管理器如图所示: 第二步:在页面做如下布局,视图为: 代码效果图: 具体的前台代码为: 使用Linq技术操作Xml body {
2012-03-16 19:31:49 578
原创 asp.net控件的分页批量全选删除
第一步:访问数据是做程序必不可少的一步。首先创建SQL ServerManagement Studio2005使用脚本创建名为“MyBookDB”的数据库!脚本如下: 具体代码如下: use master go if exists(select * from sys.databases wherename = 'MyBookDB') drop database MyBookDB go
2012-03-16 19:19:57 2481
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人