
ASP.NET
顺欣同创
这个作者很懒,什么都没留下…
展开
-
使用微软的 Visual Studio International Pack 1.0 得到汉字等相关信息
使用微软的 Visual Studio International Pack 1.0 得到汉字等相关信息2009年3月31日,微软发布了 Microsoft Visual Studio International Pack 1.0 SR1。Visual Studio International Pack 包含一组类库,该类库扩展了.NET Framework对全球化转载 2010-03-24 14:25:00 · 1379 阅读 · 0 评论 -
DXPerience之ASPxGridView使用体会(一) 自定义数据后台处理
使用ASPxGridView对接后台数据访问层 默认ASPxGridView使用DataSource可以很方便,但SQL代码写在ASPX文件中,对于分层开发不力。所以尝试对接后台接口,然后通过自定义修改、插入、删除事件中调用后台接口来处理数据。对于动态绑定数据源,需要在ASPxGridView设计中先创建好要绑定的Column,并EnableEditing,EnableInserting,原创 2010-02-22 23:19:00 · 2080 阅读 · 1 评论 -
【ASP.NET】FCKeditor 2.6 + Asp.Net 设置
FCKeditor相关资料简介:官方网站http://www.fckeditor.net/官方文档http://wiki.fckeditor.net/下载地址http://www.fckeditor.net/download/default.html官方演示http://www.fckeditor.net/demo/default.htmlFCKEditor asp.net设置原创 2007-11-19 15:42:00 · 12216 阅读 · 14 评论 -
【ASP.NET】FreeTextBox的使用方法
到www.freetextbox.com网站上,里面有个 Download Control (3.1.6) (zip)点击就可以了,下完以后是个压缩文件,解压开来,有这几个主要文件:aspnet_client FreeTextBox的外观文件,直接拷贝到你的工程的目录下就可以了。Docs 文档嘛,就是说明文档,只有一个转载 2007-11-05 22:11:00 · 2490 阅读 · 1 评论 -
C# 画圆角矩形
protected void Page_Load(object sender, EventArgs e){ Bitmap bm = new Bitmap(800, 600); Graphics g = Graphics.FromImage(bm); g.FillRectangle(Brushes.White,new Rectangle(0,0,800,原创 2007-04-17 22:36:00 · 2127 阅读 · 0 评论 -
转贴[ASP.NET]基于Forms认证的WebService应用
在安全性要求不是很高的ASP.Net程序中,基于Forms的身份验证是经常使用的一种方式,而如果需要对WebService进行身份验证,最常用的可能是基于Soap 标头的自定义身份验证方式。如果对两者做一下比较的话,显然,基于Forms的验证方式更加方便易用,能否将Forms验证方式应用到WebService中去呢? 从理论上讲,使用基于Forms的方式对WebService进行身份验证是转载 2006-12-29 09:41:00 · 2528 阅读 · 0 评论 -
[Delphi]用Delphi7访问.NET 2.0的WebService
用VS.NET 2003开发的基于.NET 1.1的WebService,可以用Delphi7正确调用。但同样的方法调用VS.NET 2005开发的基于.NET 2.0的WebService时却发生了错误。查阅资料 http://www.community.borland.com/article/borcon/files/4132/paper/4132.html 发现原来Delphi7客户端虽然支原创 2006-12-29 09:24:00 · 1545 阅读 · 0 评论 -
C# 同步两个子目录文件
using System;using System.Collections.Generic;using System.IO;using System.Text;using System.Text.RegularExpressions;namespace AutoSync{ public class NewDirectory { public static原创 2012-12-12 14:10:51 · 1000 阅读 · 0 评论