一个普通程序员
微软公开的方法: public static Database db = DatabaseFactory.CreateDatabase("ConnectionString"); 我把它修改为下面方法就可以进行自已的加密和解密了,jiemi为自定义的解密函数 public static Sq...
C# 用Linq的方式实现对Xml文件的基本操作(创建xml文件、增删改查xml文件节点信息) http://www.cnblogs.com/mingmingruyuedlut/archive/2011/01/27/1946239.
将一个已知的XML放到XDocument 对象当中使用LINQ 查询非常的容易,下面是一个例子。 查找XML文档中的所有PERSONA元素显示结果个数,并遍历输出其值 public void MyDescendants() { XDocument xdoc = XDocument.
http://www.cnblogs.com/BubbleTang/archive/2011/04/13/SqlServerDataToRe.html 没测试速度,看到转发的
字段类型 描述 bit 0或1的整型数字 int 从-2^31(-2,147,483,648)到2^31(2,147,483,647)的整型数字 smallint ...
一次筛选 IList list = (IList)dataGridView2.DataSource; var query = from student in list //where student.
Like的操作,有点像in,但是,方向变了。什么意思呢。就是你给定一个字符串,去寻找数据中某个字段包含这个字符串。就是给定的字符串是某字段的子集。Sql Script是这么写的。Selec * from table where id like '%AD%'Selec * from table where id like '%AD'Selec * from table where id like 'AD%'上面的%是通配符,表示,该字段含有某个值,不知道的位置使用%代替。
取表信息 select sysobjects.name,sys.extended_properties.value from sysobjects left join sys.
BS下实现WIN7下Aero效果 收藏一下 /Files/hantianwei/AeroWindow-jQuery-Plugin-Version-3.5.zip
Winform中DataGridView绑定IList数据源后的排序的控件 也是从网上看到的方法,我封装好了 使用方法: 使用方法: IList aaa = new List();aaa = Getr();dataGridView1.
首先,实现ICompare接口 public class ObjectPropertyCompare : IComparer {private PropertyDescriptor property;private ListSortDirection direction;// 构造函数 ...
1、数据绑定的问题: 当DataGridView的DataSource绑定的为DataTable时,当DataTable的内容发生改变时,DataGridView中的内容会自动跟随DataTable改变而不用重新绑定数据源; 而把List绑定到DataGridView则不然,当List的内容发生改变是,需要先设置DataGridView的DataSource属性为new List(), 然后再把作过改动的List重新赋于DataGridView的DataSource。
声明:本文内容主要译自Nauman Leghari的Using log4net,亦加入了个人的一点心得(节3.1.4)。请在这里下载示例代码 1 简介 1.1 Log4net的优点: 几乎所有的大型应用都会有自己的用于跟踪调试的API。
select convert(numeric(8,2),round(UnTaxAmount,2))as UnTaxAmount from View_SaleVoiceselect cast(UnTaxAmount as decimal(20,2)) as UnTaxAmount fro...
本文的内容包括: 1,文件基本操作:搜索,创建,复制,剪切,删除,重命名。 2,File和FileInfo 3,搜索:文件名和子目录 4,复制的方法:File和FileInfo 5,剪切:同盘和不同盘 6,重命名:利用FileInfo.MoveTo实现重命名。
private void timer1_Tick(object sender, EventArgs e) { DateTime dt = DateTime.Now; label1.
.net数据访问类 SQL Helper 介绍摘要:Data Access Application Block 是一个 .NET 组件,包含优化的数据访问代码,可以帮助用户调用存储过程以及向 SQL Server 数据库发出 SQL 文本命令。
DataTable table = (DataTable)dataGridView1.DataSource; //过滤例句 table.DefaultView.
C# datagridview 取某行中的某值, 方法1: string aa; aa=dataGridView1.CurrentRow.Cells["XX"].Value.ToString(); //XX:某一列的字段名,即SQL语句中的取得内容。
如果是实表可以用 if exists (select * from sysobjects where id = object_id(N'[dbo].[表名]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) drop table [dbo].
在平时的项目开发中,我相信有很大一批人都在用这个数据库自增ID,用数据库自增ID有利也有弊。 优点:节省时间,根本不用考虑怎么来标识唯一记录,写程序也简单了,数据库帮我们维护着这一批ID号。
方法1:适用于 SQL Server 2000/2005SELECT TOP 页大小 *FROM table1WHERE id NOT IN ( SELECT TOP 页大小*(页数-1) id FROM table1 ORDER BY id )...
数据库:ms sql server 2005 任务:ms sql server 2005数据库日志文件过大,需要清除。 方法: backup log [你的数据库名称] WITH NO_LOGbackup log [你的数据库名称] WITH TRUNCATE_ONLYDBCC SHRINKDATABASE([你的数据库名称]) 说明: backup log 指定仅备份事务日志。
代码 using System.IO;//写入StreamWriter sw = new StreamWriter( @"C:\temp123.txt");sw.WriteLine("----------------hello----------------");sw.
像QQ、百度hi等等即时通讯软件都有这种功能,就是你点击客户端的一些按钮,打开的网页都是已经登录了的,因为客户端已经登录过了,不用在网页上重新登录一遍。 今天在百度知道上一个网友遇到这个问题,我就花时间研究一下,帮忙解决了。
代码 Random random = new Random();string strRandom = (random.Next(1, int.MaxValue).ToString() + "000").
代码 using System;using System.Collections.Generic;using System.Text;using System.IO;using System.
update m set m=(case when m='男' then '女' else '男' end) where m''
假设当前页完整地址是:http://www.test.com/aaa/bbb.aspx?id=5&name=kelli "http://"是协议名 "www.test.com"是域名 "aaa"是站点名 "bbb.
代码 //加密 CookiesResponse.Cookies["askCRM"]["USERID"] = Tools.Encrypt(strUserName.Trim(), Tools.myKey);//解密string strUid = Request.
获取某字段或几个字段有重复的数据,可限定重复几条select field1,field2 from table group by field1,field2 having count(field1)>1 获取某字段不重复的最新记录select top * from table a where id...
今天在公司看到同事写了个SQL2005的新特性的文章,觉得很实用,在这里和大家分享下。原著作权不属于我。 这种技术主要是用到了inserted和deleted虚拟表,这两张表相信大家都很熟悉。以前我们主要是在触发器中使用。
在给文章加自定义标签时,需要在存储过程中对输入的字符串按照“,”字符分割成一个字符数组。但是Sql中没有实现字符串分组的Split方法。因此就需要编写一个自定义的Split函数。我首先是使用表值函数的方法实现的字符串分组,但是在使用中感觉不是很方便。
代码 引入命名空间using System.IO;using System.Net;using System.Text;using System.Text.RegularExpressions;//以GET方式抓取远程页面内容 public string Get_Http(st...
/**//// /// 转全角的函数(SBC case) /// /// 任意字符串 /// 全角字符串 /// ///全角空格为12288,半角空格为32 ///其他字符半角(33-126)与全角(...
有两个窗体(frmMain,frmChild) frmMain中有一LISTVIEW控件,在双击LISTVIEW后弹出frmChild. 在frmChild修改数据后关闭frmChild frmMain中LISTVIEW的数据也同时更新.
csc /target:library /out:d:\Pager.dll d:\Pager.cs
代码 static int xValue(ref int num, ref int num2) { num = 2 * num; num2 = 2 * num2; return num; } ...
代码 using System; using System.Collections.Generic; using System.Text; using System.IO; using System.
代码 using System; using System.Collections.Generic; using System.Text; using System.DirectoryServices; using System.Text.RegularExpressions; using System.Collections; namespace IISControlService { /**//// /// 这个类是静态类。
//添加应用程序池空间引用 using System.DirectoryServices; 代码 string method="Start"; //Start开启 Recycle回收 Stop 停止 string AppPoolName = "chengxuc...
Global.asax需要添加的代码。利用我们了解当前页面的运行效率。 代码 protected void Application_BeginRequest(Object sender, EventArgs e) { Application["StartTime"] = System.
日期转化一为了达到不同的显示效果有时,我们需要对时间进行转化,默认格式为:2007-01-03 14:33:34 ,要转化为其他格式,要用到DateTime.ToString的方法(String, IFormatProvider),如下所示:using System;using System.
c#读写xml文件已知有一个XML文件(bookstore.xml)如下: 代码 Oberon's Legacy Corets, Eva 5.
一般虚拟主机提供商是通过限制数据库文件的大小来实现提供定制的数据库空间的。当你把从虚拟数据库空间备份下来的文件恢复到自己的服务器上时,这个限制还是存在的。找到数据库文件 给增加个数据文件就好了 解决办法: 1.检查你的磁盘剩余空间是否足够,如果没有磁盘剩余空间,则清理磁盘,腾出空间。
代码 /// /// 判断一个字符串是否为合法整数(不限制长度) /// /// 字符串 /// public static bool IsInteger(string s) { ...
前几天做页面,排好的html页面复制到aspx页面上就是会出现差异,比如字体定义无效,基本的表现就是怎么改样式都没显示或只有某些浏览器正常,搞了半天才发现是编码问题,DW默认新建的文件编码是gb2312的,vs默认是utf-8的,时间原因也没重新排,就在web.config的Configuration节点下对这个页面单独设置了编码。
代码 //实现黄底黑字的提示效果用ToolTip控件:private void listView1_MouseMove(object sender, MouseEventArgs e) { ListViewItem item = this.
先介绍一下比较简单的使用方法:给COOKIES赋值Response.Cookies["uid"].Value = "20";Response.Cookies["LoginCode"].Value = "58469"; 以上就是分别对两个COOKIES变量赋了两个不同的传,那么在使用COOKIES时,我们怎样来控制COOKIES的有效期呢,看下面: Response.
代码 private ListView listView1;private void InitializeListView1(){ listView1 = new ListView(); // Set the view to details to show subitems.