随笔分类 -  .Net

上一页 1 2 3
一个注册表操作类,很有用!
摘要:using System; using Microsoft.Win32; namespace modify { /// /// regedit 的摘要说明。 /// public class regedit { public regedit() { // ... 阅读全文
posted @ 2004-06-10 09:21 edobnet 阅读(1471) 评论(1) 推荐(0)
模拟鼠标/键盘,(机器人,远程控制开发初步)大家一些研究!
摘要:鼠标操作类 using System; namespace Edobnet.Net.Lib { /// /// Mouse 的摘要说明。 /// public class Mouse { public Mouse() { // // TODO: 在此... 阅读全文
posted @ 2004-06-09 09:43 edobnet 阅读(9524) 评论(11) 推荐(2)
用.NET调用oracle的存储过程返回记录集
摘要:最近做一个项目,为了提高数据库安全性,客户要求所有数据库操作都要放在存储过程。象一般的更新操作,返回一个值的,都比较容易实现。而要想返回记录集就比较麻烦,我在网上搜了一下,这方面的文章并不多。在此总结一下,供大家参考。有关.NET如何访问oracle数据库,在此就不介绍了。相关的资料也很多,有兴趣的朋友可以看下文。使用ASP.NET访问Oracle数据库的方法http://www.weiw.com... 阅读全文
posted @ 2004-06-08 09:51 edobnet 阅读(1086) 评论(1) 推荐(0)
OWC使用技巧集
摘要:如何在ASP.NET中用OWC绘制图表 (1) 一、概述 二、设置图表引擎 三、OWC的许可证问题 四、OWC的运行机制 五、在Web服务器上安装OWC 10 六、OWC编程模式 ━━━━━━━━━━━━━ 正文: ━━━━━━━━━━━━━ 一、概述 在开发应用程序时,经常会遇到必须提供交互式图表的情况。例如,你可能在开发一个管理销售和产品数据的应用程序,数据保存在SQL Server数据库... 阅读全文
posted @ 2004-06-07 15:54 edobnet 阅读(49150) 评论(132) 推荐(0)
一个IIS管理类
摘要:using System; using System.Data; using System.DirectoryServices; using System.Collections; namespace TestUrlRe { /// /// IISManager 的摘要说明。 /// public class IISManager { ... 阅读全文
posted @ 2004-06-04 17:10 edobnet 阅读(1961) 评论(4) 推荐(0)
SQL 存储过程封装代码生成器
摘要:界面图:生成的代码如下:(通过sqlHelp封装执行)using System;using System.Data.SqlClient;using System.Data; namespace Etime.BEP{ /// /// ProjectTask /// public class ProjectTask { public ProjectTask() { // // TOD... 阅读全文
posted @ 2004-06-04 12:10 edobnet 阅读(4186) 评论(12) 推荐(0)
DotNet 开发团队图
摘要: 阅读全文
posted @ 2004-06-03 10:01 edobnet 阅读(582) 评论(0) 推荐(0)
发现Url rewriter是个好东西啊,blog也使用了这个东西(转一篇文章研究一个)
摘要:Download source - 8 Kb Introduction One of the most popular extensions to the Apache webserver has been mod_rewrite - a filter which rewrites URLs. For example, instead of a URL such as http://www.... 阅读全文
posted @ 2004-06-02 09:48 edobnet 阅读(9845) 评论(19) 推荐(0)
设计模式之-----单件(singleton)
摘要:using System;namespace CSDesingPattern{ class Singleton { private static Singleton mInstance; private int x = 0; private Singleton(){} public static Singleton GetObject() { if (mInstance == ... 阅读全文
posted @ 2004-06-01 15:45 edobnet 阅读(1256) 评论(4) 推荐(0)
vbscript 调用 web service
摘要: 阅读全文
posted @ 2004-06-01 13:47 edobnet 阅读(1249) 评论(0) 推荐(0)
添加Soap头来增加Web Service的安全性
摘要:myService.asmx.cs 添加类:MyHeader 从 System.Web.Services.Protocols.SoapHeader继承 完整的代码如下 using System; using System.Collections; using System.ComponentModel; using System.Data; using System.Diagnostics; us... 阅读全文
posted @ 2004-06-01 13:39 edobnet 阅读(1561) 评论(0) 推荐(0)

上一页 1 2 3