软件
文章平均质量分 50
liushmh
这个作者很懒,什么都没留下…
展开
-
.log 在notepad中的使用
.log如果放在文本文件的最前面,那么就会在每次打开文本文件的时候自动添加时间和日期,这样可以作为日志文件使用同时编辑txt文档的时候,输入F5可以插入日期和时间.原创 2004-09-22 09:47:00 · 1314 阅读 · 0 评论 -
.net中的page code
GetEncoding 方法依赖于基础平台支持大部分代码页。但是,对于下列情况提供系统支持:默认编码,即在执行此方法的计算机的区域设置中指定的编码;Little-Endian Unicode (UTF-16LE);Big-Endian Unicode (UTF-16BE);Windows 操作系统 (windows-1252);UTF-7;UTF-8;ASCII 以及 GB18030(简体中文)。原创 2004-11-20 16:45:00 · 891 阅读 · 0 评论 -
System.Runtime.InteropServices.COMException(0x8004020F): The server rejected one or more recipient addresses.
这个问题需要设置可以通过指定邮件服务器进行relay的ip地址smtp->properties->access->relayadd the ip address public bool Send(string to, string from, string subject, string message) { try原创 2004-12-01 14:37:00 · 3980 阅读 · 0 评论 -
property procedures offers a few advantages
Using full property procedures offers a few advantages, however, including the following:It enables you to perform some basic data checking and refuse invalid information. Dont take this approa原创 2004-12-02 23:38:00 · 765 阅读 · 0 评论 -
remoting
Here are the steps to build the server:Add a reference to the System.Runtime.Remoting.dll assembly.Implement a class that derives from MarshalByRefObject.Choose one of the provided chann原创 2004-12-06 14:34:00 · 787 阅读 · 0 评论 -
aspnet_regiis -c重新安装
aspnet_regiis -c重新安装原创 2004-12-27 10:26:00 · 2488 阅读 · 1 评论 -
The Free Lunch Is Over: A Fundamental Turn Toward Concurrency in Software 转贴
The Free Lunch Is Over: A Fundamental Turn Toward Concurrency in Software<!--MSFPhover = (((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 3 )转载 2005-01-05 16:44:00 · 2382 阅读 · 0 评论 -
如何连接oracle数据库及故障解决办法-总结 极力推荐 转贴
如何连接oracle数据库及故障解决办法-总结 极力推荐该文是我连接oracle的总结,特别适合于程序开发人员与oracle菜鸟 如何配置才能使客户端连到数据库: 要使一个客户端机器能连接oracle数据库,需要在客户端机器上安装oracle的客户端软件,唯一的例外就是java连接数据库的时候,可以用jdbc thin模式,不用装oracle的客户端软件。加入你在机器上转载 2005-01-06 11:50:00 · 1372 阅读 · 0 评论 -
sql server定时操作
如果在SQL Server 里需要定时或者每隔一段时间执行某个存储过程或3200字符以内的SQL语句时,可以用管理->SQL Server代理->作业来实现。1、管理->SQL Server代理->作业(按鼠标右键)->新建作业->2、新建作业属性(常规)->名称[自定义本次作业的名称]->启用的方框内是勾号-> 分类处可选择也可用默认的[未分类(本地)]->所有者默认为登录SQL Server用原创 2004-12-28 14:42:00 · 1269 阅读 · 0 评论 -
[C#]Visual C#的Excel编程
fuxing 发表于 2004-8-25 10:05:00作者:wyhw Excel是微软公司办公自动化套件中的一个软件,他主要是用来处理电子表格。Excel以其功能强大,界面友好等受到了许多用户的欢迎。在办公的时候,正是由于Excel的这么多的优点,许多重要的数据,往往以Excel电子表格的形式存储起来。这样就给程序员带来了一个问题,虽然Excel原创 2005-02-23 13:13:00 · 1110 阅读 · 0 评论 -
.net assistant tools collection
http://dev.csdn.net/article/31/31277.shtmCode generation NVelocity CodeSmith X-Code .NET XGoF - NMatrix / DEVerestCompilationeXtensible C# - ResolveCorp Mono DotGNU - GNUObfuscat原创 2005-02-23 17:40:00 · 939 阅读 · 0 评论 -
dot net tool URL
http://www.sellsbrothers.com/tools/#regexd原创 2005-02-24 10:28:00 · 1048 阅读 · 0 评论 -
Java send mail
import javax.mail.*; import javax.mail.internet.*; import java.util.*; //This function can be used to send the mail // with the parameters given to it //U have to specify the smtp server through //whi原创 2005-03-09 19:05:00 · 1163 阅读 · 0 评论 -
不知道asp.net 1.1中怎么设置默认button
好像只能用javascript来做,又不是特别会,但是项目中出现这样的需求发现portal start kit中的sign-in按钮居然是被设置成默认的按钮,后来发现是个image button看来第一个image button会被系统设置为default button好在asp 2.0可以直接设置了,不过也得多看看javascript了原创 2004-11-17 14:40:00 · 974 阅读 · 0 评论 -
sql server中别忘了使用ltrim
when convert int to string using function str(), sql server could fill the whitespace at left when the integers length is too short.so you cant using comparison operator just like like convenient.原创 2004-11-09 17:58:00 · 1010 阅读 · 0 评论 -
notepad使用时的一个奇怪的问题
症状如下:使用的时候,切换到中文输入法,输入字符居然是从右到左的,而且滚动条也从右边换到了左边.后来在语言和区域选项中把 为复杂文字和从右到左的语言安装文件 选项取消问题解决.不知道是什么时候把这个东西选上了,弄得记事本中文输入就没有正常使用过.原创 2004-09-22 10:01:00 · 773 阅读 · 0 评论 -
运用SmartNavigation,结果javascript不能弹出窗口
今天碰到了javascript窗口无法弹出,找了一个下午,终于发现是smartnavigation在作怪,后来在网上发现此文,特收于myblog以下内容来自http://blog.joycode.com/zjf/archive/2004/07/15/27418.aspxSmartNavigation可以减少页面刷新,它还是加载以前的ViewState,页面输出的Html并不改变,因此无论是用R原创 2004-09-24 17:18:00 · 903 阅读 · 0 评论 -
关系数据库范式
第1范式:所有的属性都是不可分割的原子单位。第2范式:如果关系模式R(U,F)中的所有非主属性都完全依赖于任意一个候选关键字,则称关系R 是属于第二范式。第3范式:如果关系模式R(U,F)中的所有非主属性对任何候选关键字都不存在传递信赖,则称关系R是属于第三范式的BC范式:如果关系模式R(U,F)的所有属性(包括主属性和非主属性)都不传递依赖于R的任何候选关键字,那么称原创 2004-09-10 14:16:00 · 1965 阅读 · 0 评论 -
how to using CommandArgument in DataGrid
<asp:LinkButton runat="server" CommandName="Select" Text="Details" CommandArgument= /> This primary key field information could then be extracted in the ItemCommand event原创 2004-10-12 10:35:00 · 825 阅读 · 0 评论 -
DataSet or DataReader?
When I talk with working developers, the question I hear most often is: Which is the right approach? The answer depends on your problem domain. The DataReader is a forward-only fire hose for data. It原创 2004-10-16 13:14:00 · 757 阅读 · 0 评论 -
transaction across server
you would use .NETs Enterprise Services, which is the .NET wrapper to COM+. However, I will not be covering Enterprise Services in this book. If you need some information on transactional programming原创 2004-10-16 12:54:00 · 650 阅读 · 0 评论 -
transaction in dot net
Phantoms Transaction 1 reads a set of rows returned by a specified WHERE clause. Transaction 2 then inserts a new row, which also happens to satisfy the WHERE clause of the query previously used b原创 2004-10-11 15:25:00 · 771 阅读 · 0 评论 -
datagrid非 templated column中取出值
e.Item.Cells[nColumnIndex].Controls[0]原创 2004-10-21 09:35:00 · 528 阅读 · 0 评论 -
Design-Time Metadata Attributes for Properties
AttributeDescriptionBindableAttribute Specifies whether it is meaningful to bind data to the property. Well discuss data binding in Chapter 16, "Data-Bound Controls."Brows原创 2004-10-21 11:17:00 · 638 阅读 · 0 评论 -
Automatic Transactions and .NET Framework Classes
Instances of a .NET Framework class can participate in an automatic transaction, as long as you prepare the class to do so. Each resource accessed by a class instance, or object, enlists in the transa原创 2004-10-28 15:02:00 · 699 阅读 · 0 评论 -
面向服务的分析与设计原理(笔记)
链接http://www-900.ibm.com/developerWorks/cn/webservices/ws-soad1/从概念上讲,SOA 中有三个主要的抽象级别:操作:代表单个逻辑工作单元(LUW)的事务。执行操作通常会导致读、写或修改一个或多个持久性数据。SOA 操作可以直接与面向对象 (OO) 的方法相比。它们都有特定的结构化接口,并且返回结构化的响应。完全同方法一样,特定操原创 2004-11-02 13:42:00 · 1076 阅读 · 0 评论 -
format in datetime
using System;using System.Globalization; public class MainClass { public static void Main(string[] args) { DateTime dt = DateTime.Now; String[] format = { "d", "D",原创 2004-11-10 17:23:00 · 861 阅读 · 0 评论 -
linux device driver
The ioctl MethodLike char devices, block devices can be acted on by using the ioctl system call.The only relevant difference between block and char ioctl implementations is thatblock drivers share a n原创 2005-03-13 21:39:00 · 1431 阅读 · 0 评论