随笔分类 -  .net

摘要:一、首先在web.config文件中添加如下内容。(不添加下面的内容实现不了刷新局部页面的效果) httpHandlers add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/ add verb="*" path="*_AppService.axd" va 阅读全文
posted @ 2009-11-17 16:34 ljlxyf 阅读(599) 评论(0) 推荐(0) 编辑
摘要:数组查找对象的方法一种是查找对象,一种是查找值1. 查找对象Personp1=newPerson("http://www.my400800.cn",18);Personp2=newPerson("http://www.my400800.cn",19);Personp3=newPerson("http://www.my400800.cn",20);Person[]persons=...{p1,p2,p3};//查找p2所在数组中的位置Array.IndexOfPerson(persons,p2);2. 查找值Personp1=newPerson("http://www.my400800.cn 阅读全文
posted @ 2009-09-21 11:44 ljlxyf 阅读(1768) 评论(0) 推荐(0) 编辑
摘要:代码下载地址:http://download.csdn.net/source/1669301SaveHtMLtoImageComm共通模块类定义GetImage.cs 类定义using System;using System.Collections.Generic;using System.Text;using System.Drawing;namespace SaveHtMLtoImageComm{ public class GetImage { private int S_Height; private int S_Width; private int F_Height; private 阅读全文
posted @ 2009-09-16 15:21 ljlxyf 阅读(1177) 评论(2) 推荐(0) 编辑
摘要:using System;using System.Collections;using System.Collections.Generic;using System.Text;using System.Text.RegularExpressions;using System.Web;using System.Web.Caching;namespace CropWeb.Library{ /// summary /// 缓存管理 /// /summary public class CacheHelper { private CacheHelper() { } // Based on 阅读全文
posted @ 2009-08-28 17:03 ljlxyf 阅读(507) 评论(0) 推荐(0) 编辑
摘要:using 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;using fjt.DBUtility;/// summary/// 分页用sql查询类 http://w 阅读全文
posted @ 2009-08-28 10:03 ljlxyf 阅读(218) 评论(0) 推荐(0) 编辑
摘要:C#自动给据sql中的带@的变量提取变量名称在从简单数据对象中取得生成SqlParameter数组进行数据插入//自动取得sql中的带@的变量,生成SqlParameter数组,从简单数据对象中取得sql中所需变量值public class ziDongGetSqlPara{ #region public static object[] getParArr(string strSql, object dataObj) /// summary /// 数据库操作sql 用SqlParameter数组取得 /// /summary /// param name="strSql"sql语 阅读全文
posted @ 2009-08-20 13:37 ljlxyf 阅读(401) 评论(0) 推荐(0) 编辑
摘要:aspx文件内容form id="form1" runat="server" onsubmit="" div style="margin: 100px auto; width: 80%; text-align: left" asp:GridView ID="GridView1" runat="server" AllowPaging="True" AllowSorting="True" OnRowDataBound="GridView1_RowDataBound" OnRowEditing="GridView1_RowUpdating" OnRowUpdated="GridView1 阅读全文
posted @ 2009-08-19 16:38 ljlxyf 阅读(1003) 评论(0) 推荐(0) 编辑
摘要:C#中通过Type类可以访问任意数据类型信息。1.获取给定类型的Type引用有3种方式:a.使用typeof运算符,如Typet=typeof(int);b.使用GetType()方法,如inti;Typet=i.GetType();c.使用Type类的静态方法GetType(),如Typet=Type.GetType("System.Double");2.Type的属性:Name:数据类型名;FullName:数据类型的完全限定名,包括命名空间;Namespace:数据类型的命名空间;BaseType:直接基本类型;UnderlyingSystemType:映射类型;3.Type的方法:Ge 阅读全文
posted @ 2009-08-19 11:00 ljlxyf 阅读(514) 评论(0) 推荐(0) 编辑
摘要:前两天研究了一下Flex与.NET如何进行数据交互,并写了一个文档,后面叙述得还不是很详细,还可以再研究深一点。本文是关于Flex与ASP.NET通过Remoting方式进行通讯的内容,过段时间有空还会把其它的通讯方式也描述一下,顺便也会把Flex3与FluorineFx数据类型转换这方面的内容讲一下,都是通过在网上找资料和自己研究所总结出来的,应该说讲得还是很浅,毕竟学得还不深,继续努力学习!一、软件:1、Flex平台:Adobe Flex Builder 32、.Net平台:Visual Studio .Net 20083、Remoting网关:Fluorine4、第三方组件:Remote 阅读全文
posted @ 2009-08-12 10:52 ljlxyf 阅读(174) 评论(0) 推荐(0) 编辑
摘要:首先IList 泛型接口是 ICollection 泛型接口的子代,并且是所有泛型列表的基接口。它仅仅是所有泛型类型的接口,并没有太多方法可以方便实用,如果仅仅是作为集合数据的承载体,确实,IListT可以胜任。不过,更多的时候,我们要对集合数据进行处理,从中筛选数据或者排序。这个时候IListT就爱莫能助了。1、当你只想使用接口的方法时,ILis这种方式比较好.他不获取实现这个接口的类的其他方法和字段,有效的节省空间.2、IList 是个接口,定义了一些操作方法这些方法要你自己去实现List 是泛型类,它已经实现了IList 定义的那些方法IList Class1 阅读全文
posted @ 2009-08-06 15:46 ljlxyf 阅读(192) 评论(0) 推荐(0) 编辑
摘要:今天接到一个项目,里面用到了好多的asp.net用户自定义控件,这是觉得如果能够给自定义控件添加自定义属性改多好啊,在百度和google找了好久也没有找到我想要的东西,无意中发现给用户自定义控件添加用户自定义属性居然这样简单,下面把代码贴出来供大家参考。调用用户自定义控件文件的源代码:文件名称:Default2.aspx%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %%@ Register Src="user_Control/test.ascx" T 阅读全文
posted @ 2009-07-16 16:23 ljlxyf 阅读(252) 评论(0) 推荐(0) 编辑
摘要:本人从事网站开发工作4年多了,但是一直对网站的搜索分词感觉非常难以实现,尤其是对于一个小型网站来说更是个让人头疼的问题。 经过几天的努力奋斗实现的一些简单的分词处理:比如现在可以把400电话申请分成400电话和申请两个词,然后再用这两个词去数据库查符合条件的记录, 测试地址1:http://blog.my400800.cn/400电话申请 ,如果你打开上面的地址,你可以发现单个的400电话或申请关键词都会被标红,即便是申请400电话这样的关键词也会被标红。 测试地址2: http://blog.my400800.cn/400电话800电话对比 这个可以把 400电话800电话对比 拆分成 40 阅读全文
posted @ 2009-07-15 16:00 ljlxyf 阅读(190) 评论(0) 推荐(0) 编辑
摘要:/// summary /// 调用函数 /// /summary /// param name="sender"/param /// param name="e"/param protected void Button1_Click(object sender, EventArgs e) { Response.Write(GB2312ToUTF8("大家好,欢迎访问 http://www.my400800.cn ")); } /// summary /// 转换GB2312 的字符串为UTF8编码 /// /summary /// param name="s 阅读全文
posted @ 2009-06-15 11:38 ljlxyf 阅读(269) 评论(0) 推荐(0) 编辑
摘要:c#实现GB2312和UTF8字符编码方式的转换public string UTF8ToGB2312(string str) { try { Encoding utf8 = Encoding.GetEncoding(65001); Encoding gb2312 = Encoding.GetEncoding("gb2312");//Encoding.Default ,936 byte[] temp = utf8.GetBytes(str); byte[] temp1 = Encoding.Convert(utf8, gb2312, temp); string result = gb2312. 阅读全文
posted @ 2009-06-10 08:44 ljlxyf 阅读(822) 评论(0) 推荐(0) 编辑
摘要:http://files.cnblogs.com/chengulv/SoftRegion.rarMicrosoft .Net的应用程序的代码文件,与Java生成的文件类似,它们都没有本地代码,而是一种类似于汇编的代码。这样,只要有合适的工具,就可以完整的把别人写出来的程序反编译成自己需要的程序文件。 我所知道的.Net下的反汇编程序是Salamander和 Refelector两个工具,他们都可以对.Net的程序集反编译成你需要的语言。 那么,我们写的程序,做的项目,如何进行正版的许可证管理,有许多方法。 最好的方案,是几个方法的综合。下面我说一下单独的许可验证方法。 最简单的方法,就是使用许 阅读全文
posted @ 2009-05-05 09:14 ljlxyf 阅读(274) 评论(0) 推荐(0) 编辑
摘要:YxShop_V4.2.0开源免费商城2009新春版发布,整合dz最新版,开源! YxShop_V4.2.0开源免费商城2009新春版强悍发布,继续开源!YxShop_V4.2.0开源免费商城强悍发布,继续开源!软件名称:YxShop商城软件版本:YXShopV4.2.0软件分类:asp.net/电子商务商城官方:http://www.yx-shop.cn演示地址:http://b2c.changehope/shop/升级论坛:http://bbs.yx-shop.cn免费开源版本,源码版下载:[电信下载]:http://www1.changehope.com/down/YxShop 阅读全文
posted @ 2009-05-04 14:07 ljlxyf 阅读(477) 评论(0) 推荐(0) 编辑
摘要:using System;using System.Collections.Generic;using System.Text;using System.Xml;namespace XMLTest{ public class CommXml { public XmlDocument xmlDoc = new XmlDocument(); public void getXmlDoc(string strXml) { xmlDoc.LoadXml(strXml); } public CommXml(string strXml) { xmlDoc.LoadXml(strXml); } /// su 阅读全文
posted @ 2009-04-23 11:31 ljlxyf 阅读(167) 评论(0) 推荐(0) 编辑
摘要:原因:System.Xml.XmlException: “”(十六进制值 0x03)是无效的字符。 行 4,位置 24。 在 System.Xml.XmlTextReaderImpl.Throw(Exception e) 在 解决方法最近碰到一个问题,我的一个把数据库中记录的信息暴露出来的Web Service调用时候出问题了。报下面的错误信息:System.InvalidOperationException was unhandled Message="XML 文档(1, 823)中有错误。" Source="System.Xml" Message="“”(十六进制值 0x0E)是无效的字 阅读全文
posted @ 2009-04-23 09:55 ljlxyf 阅读(305) 评论(0) 推荐(0) 编辑
摘要:using 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.Collections;using System.IO;using System.Text;/// summary/ 阅读全文
posted @ 2009-04-15 13:14 ljlxyf 阅读(454) 评论(0) 推荐(0) 编辑
摘要:口诀为转载。正则是每个程序员绕不开的堡垒,只有把它攻下来。我觉得正则之所以难,第一难是需要记忆,第二难是要求具备抽象逻辑思维。 来源 PHPHOT签于网上太多的介绍都是一篇凶悍的短文,边看边理解可以,帮助记忆不行。又受五笔字型字根表口诀“白手看头三二斤...”的启发,试作“正则表达式助记口诀”又名“正则打油诗”,版本0.1,绝对原创,仿冒必究,:)注:本文仅为学习正则时为了便于记忆而作,不能代替系统而全面的学习过程,错漏之处,敬请指正!正则其实也势利,削尖头来把钱揣; (指开始符号^和结尾符号$)特殊符号认不了,弄个倒杠来引路; (指\. \*等特殊符号)倒杠后面跟小w, 数字字母来表示; ( 阅读全文
posted @ 2009-04-14 10:41 ljlxyf 阅读(144) 评论(0) 推荐(0) 编辑