摘要: BEFORE INSERT Trigger A BEFORE INSERT Trigger means that Oracle will fire this trigger before the INSERT operation is executed.The syntax for an BEFORE INSERT Trigger is:CREATE or REPLACE TRIGGER trig... 阅读全文
posted @ 2006-05-30 10:13 Tim工作室 阅读(316) 评论(0) 推荐(0) 编辑
摘要: In Oracle, you can create your own procedures.The syntax for a procedure is:CREATE [OR REPLACE] PROCEDURE procedure_name [ (parameter [,parameter]) ]IS [declaration_section]BEGIN executable_s... 阅读全文
posted @ 2006-05-30 09:59 Tim工作室 阅读(232) 评论(0) 推荐(0) 编辑
摘要: In Oracle, you can create your own functions.The syntax for a function is:CREATE [OR REPLACE] FUNCTION function_name [ (parameter [,parameter]) ] RETURN return_datatypeIS | AS [declaration_se... 阅读全文
posted @ 2006-05-30 09:53 Tim工作室 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 样式 .small {}{ font-size: 9pt; weaver:expression(highlight(this))} JavaScript 阅读全文
posted @ 2006-05-29 18:14 Tim工作室 阅读(325) 评论(0) 推荐(0) 编辑
摘要: http://timsoft.cnblogs.com/articles/412171.html 阅读全文
posted @ 2006-05-29 16:40 Tim工作室 阅读(486) 评论(0) 推荐(0) 编辑
摘要: 客户端脚本 ... 阅读全文
posted @ 2006-05-29 16:28 Tim工作室 阅读(281) 评论(0) 推荐(0) 编辑
摘要: 实现步骤第一,在页面上加入2个DataGrid(dgMaster,dgDetail),设置好样式;第二,在dgMaster中添加一个模板列,并且将dgDetail加入到模板中 ... 阅读全文
posted @ 2006-05-29 16:10 Tim工作室 阅读(479) 评论(0) 推荐(0) 编辑
摘要: 命名空间using System.Security.Cryptography; 对称算法的机密密钥 private const string sKey = "123"; 对称算法的初始化向量 private const string sIV = "abc";加密 public static string EncryptString(string Value) { ... 阅读全文
posted @ 2006-05-29 15:13 Tim工作室 阅读(335) 评论(0) 推荐(0) 编辑