随笔分类 -  .NET

摘要://配置//页面 阅读全文
posted @ 2010-10-06 23:56 曾祥展 阅读(1569) 评论(0) 推荐(0) 编辑
摘要:0124816,32,64,128,256,512,1024,2048,4096,8192--2的n次方tinyint类型就够用了--0无权限--1可读(read)--2可新增(insert)--4可修改(update)--8可删除(delete)--16可审核...权限的组合read+insert=1+2=3read+insert+delete=1+2+8=11read+update+delete=1+4+8=13select1|2权限的加法就是逻辑[或]运算--结果:3select3&(~1)权限的减法,使用[与]运算+[非]运算来实现--结果:2select1|13一次添加n个权 阅读全文
posted @ 2010-10-06 22:51 曾祥展 阅读(1721) 评论(0) 推荐(0) 编辑
摘要:用.net做B/S结构的系统,您是用几层结构来开发,每一层之间的关系以及为什么要这样分层? 答: 从下至上分别为:数据访问层、业务逻辑层(又或成为领域层)、表示层 数据访问层:有时候也称为是持久层,其功能主要是负责数据库的访问 业务逻辑层:是整个系统的核心,它与这个系统的业务(领域)有关 表示层:是系统的UI部分,负责使用者与整个系统的交互。 ... 阅读全文
posted @ 2010-04-23 12:56 曾祥展 阅读(46209) 评论(67) 推荐(69) 编辑
摘要:分页是Web应用程序中最常用到的功能之一,AspNetPager 简单实用,应用到项目后台中,棒极了!自定义样式:<style type="text/css">/*拍拍网风格*/.paginator { font: 11px Arial, Helvetica, sans-serif;padding:10px 20px 10px 0; margin: 0px;}.paginator a {padding: 1px 6px; border: solid 1px #ddd; background: #fff; text-decoration: none;margin- 阅读全文
posted @ 2010-03-03 19:28 曾祥展 阅读(33667) 评论(29) 推荐(13) 编辑
摘要:js:<scripttype="text/javascript">functiononUpdating(){varupdateProgressDiv=document.getElementById('upCustomer');vargridView=document.getElementById('gvUpdateProgress');vargridViewBounds=Sys.UI.... 阅读全文
posted @ 2010-02-19 16:50 曾祥展 阅读(1217) 评论(1) 推荐(0) 编辑
摘要:Stream iStream = null; byte[] buffer = new Byte[10240];// 缓冲区块10K bytes : int length; long dataToRead; string filepath = @"E:\software\SQL Server 2000 Personal Edition.ISO"; ... 阅读全文
posted @ 2010-01-30 13:15 曾祥展 阅读(858) 评论(0) 推荐(0) 编辑
摘要:方法一: //须添加对System.Web的引用 using System.Web.Security; ... /// <summary> /// SHA1加密字符串 /// </summary> /// <param name="source">源字符串</param> /// <returns> 阅读全文
posted @ 2010-01-30 11:35 曾祥展 阅读(33867) 评论(11) 推荐(15) 编辑
摘要:FlyTreeView的外观俏丽,性能也最为丰富,可谓精雕细琢。先一睹为快!破解后 没有文字水印 ,没有过期无法运行情况 图片如下: 原版有文字水印在左上角上,并且过了期限就不能运行 图片如下:过期后无法运行: 过程手记:打开--vs2008 程序-Microsoft Windows SDK v6.0A—Tools--IL 反汇编程序把所用的dll生成.il文件 打开il文件 k掉836 - 846.publickey = (00 24 00 00 04 80 00 00 94 00 00 00 06 02 00 00 // .$..............00 24 00 00 52 53 阅读全文
posted @ 2010-01-27 21:54 曾祥展 编辑
摘要:default.aspx.cs: 点击商品 URL:http://localhost:3052/WebSite1/product/item=33点击注册 URL:http://localhost:3052/WebSite1/Registration 阅读全文
posted @ 2010-01-07 11:49 曾祥展 阅读(793) 评论(0) 推荐(0) 编辑
摘要:using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using System.Web.UI.HtmlControls;using System.Text;public partial class pay : Sys 阅读全文
posted @ 2009-12-31 15:37 曾祥展 阅读(1747) 评论(2) 推荐(2) 编辑
摘要:/// /// 通用数据库接口 /// using System; using System.Collections; using System.Collections.Specialized; using System.Data; using System.Data.SqlClient; using System.Configuration; using System.Data.Comm... 阅读全文
posted @ 2009-12-31 15:03 曾祥展 阅读(18130) 评论(18) 推荐(7) 编辑
摘要://多个代理背后的ip地址文件名:IPAddress.csusing System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using System.Web.UI.HtmlControls;using System.Text.RegularExpressions;namespa 阅读全文
posted @ 2009-12-31 14:15 曾祥展 阅读(3011) 评论(3) 推荐(2) 编辑
摘要:登录的时候先取cookie,取到就加1.然后保存。防止同一账户重复登录放在登陆成功的地方:stringkey=TextBox1.Text;//用户名文本框设为cache关键字stringuer=Convert.ToString(Cache[key]);//读取cache中用户相应的值if(uer==null||uer==String.Empty)//判断cache中是否有用户的信息,如果没有相关的... 阅读全文
posted @ 2009-12-23 18:52 曾祥展 阅读(4394) 评论(2) 推荐(1) 编辑
摘要:一个外层div ScriptManager1 UpdatePanel1 GridView1 Triggers html: 阅读全文
posted @ 2009-12-23 10:23 曾祥展 阅读(782) 评论(0) 推荐(0) 编辑
摘要:using System.Text.RegularExpressions; //正则string strHtml = " </ul> <div id=\"photo-tags\"> <h3 id=\"tags-title\">Tags in this photo: </h3> <ul id='tags'> <li> <a href='/user/669345/tags/Belgium'>Belgium </a> < 阅读全文
posted @ 2009-12-21 22:38 曾祥展 阅读(488) 评论(0) 推荐(0) 编辑
摘要:设置jmail服务器: 用户名邮箱 | 密码 | 服务器 <add name="email" connectionString="itn0300012@the-capable.com.cn|666666|192.168.8.8" /><add name="emailac1" connectionString="itn0300012@the-capable.com.cn" />Outlook Express—工具—账户常规--邮件账户:服务器--POP3: 阅读全文
posted @ 2009-12-21 14:53 曾祥展 编辑
摘要:AjaxControlToolkit 控件新建服务 WebServiceWebService.cs 阅读全文
posted @ 2009-11-06 15:52 曾祥展 阅读(1004) 评论(2) 推荐(0) 编辑
摘要:EFSqlBulkCopy批量入库stringconnection=ConfigurationManager.ConnectionStrings["DbConn"].ConnectionString;using System.Data.SqlClient;using System.Data;using System.ComponentModel;publicstaticvoidBulkInsert(stringconnection,stringtableName,IListlist){using(varbulkCopy=newSqlBulkCopy(connection)) 阅读全文
posted @ 2009-10-31 19:46 曾祥展 阅读(2482) 评论(0) 推荐(0) 编辑
摘要:(页面数据校验类)PageValidate.cs 基本通用。 阅读全文
posted @ 2009-10-27 15:11 曾祥展 阅读(1503) 评论(0) 推荐(0) 编辑
摘要:protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) { int i; for (i = 0; i /// 保存选定的dropdownlist值 /// /// /// private ... 阅读全文
posted @ 2009-10-24 10:14 曾祥展 阅读(928) 评论(0) 推荐(0) 编辑