摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Web;using Cemetery_Manage_Information_System.Models.Common;namespace Ceme... 阅读全文
摘要:
服务器的环境为:系统:Windows server 2008 64位数据库:Oracle 10gWEB应用服务:IIS 7.0+.Net Framework 4.0解决方法Toad for oracle 安装位置不要放在 Program Files X86文件夹下 阅读全文
摘要:
varWshShell =newActiveXObject('WScript.Shell') WshShell.SendKeys('{F11}');问题:Microsoft JScript 运行时错误: Automation 服务器不能创建对象解决方法:修复一下 Automation,可以把下面... 阅读全文
摘要:
一,哈希表(Hashtable)简述 在.NET Framework中,Hashtable是System.Collections命名空间提供的一个容器,用于处理和表现类似keyvalue的键值对,其中key通常可用来快速查找,同时key是区分大小写;value用于存储对应于key的值。Hashta... 阅读全文
摘要:
escape不编码字符有69个:*,+,-,.,/,@,_,0-9,a-z,A-ZencodeURI不编码字符有82个:!,#,$,&,',(,),*,+,,,-,.,/,:,;,=,?,@,_,~,0-9,a-z,A-ZencodeURIComponent不编码字符有71个:!, ',(,),*,... 阅读全文
摘要:
1.丢弃小数部分,保留整数部分parseInt(5/2)2.向上取整,有小数就整数部分加1Math.ceil(5/2)3,四舍五入.Math.round(5/2)4,向下取整Math.floor(5/2)Math 对象的方法FF: Firefox, N: Netscape, IE: Internet... 阅读全文
摘要:
!=~=^= 阅读全文
摘要:
CREATE OR REPLACE FUNCTION MD5( passwd IN VARCHAR2) RETURN VARCHAR2IS retval varchar2(32);BEGIN retval := utl_raw.cast_to_raw(DBMS_OBFUSCATION_TOO... 阅读全文
摘要:
CREATE OR REPLACE FUNCTION GetHzPYCAP(p_String varchar2) --????? RETURN VARCHAR2 IS--declare --p_String varchar2(200) := '???????'; v_char varchar2(2)... 阅读全文
摘要:
CREATE OR REPLACE FUNCTION bdlly.fn_Reg_ywdjh(fn_rq date) RETURN varchar2 IS v_char varchar2(200); v_max varchar2(100); BEGIN --查询出最... 阅读全文