Time of Update: 2018-12-06
代碼Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><html><head><script src="jquery-1.4.2.min.js"></script></head><body> <table> <tr>
Time of Update: 2018-12-06
ASP Codes:Response.AddHeader "cache-control","no-store"
Time of Update: 2018-12-06
同上一篇【原】[Data.Common.Format] 格式化傳入的float(浮點型)字串步驟:1. 添加一個使用者自訂函數(FormatMinDecimals)2. 在公式中調用FormatMinDecimals(mailto:%7B@strFloat}, 2)代碼如下(Crystal 文法): Crystal 文法Code highlighting produced by Actipro CodeHighlighter
Time of Update: 2018-12-06
在使用ADO.NET POCO T4 模板為預存程序產生方法時,發現無法為沒有傳回值的預存程序添加方法。例如:spDeleteCustomer.sql有以下兩種解決方案:1. 修改T4 模板: View Code
Time of Update: 2018-12-06
轉自:http://www.cnblogs.com/mbailing/archive/2012/07/16/2593368.html EF4.1/4.3 的一些使用小技巧 (1)、多表關聯查詢的寫法: var query = (from m in context.Dic_PropertyClassDef.Include("Dic_PropertyTypeDef")
Time of Update: 2018-12-06
Time of Update: 2018-12-06
DECLARE @City TABLE( ID INT IDENTITY(1,1), NAME NVARCHAR(50), ParentID INT NULL)INSERT INTO @CityVALUES ('上海市', NULL), ('江蘇省', NULL), ('浙江省', NULL), ('徐匯區', 1), ('閔行區', 1), ('黃浦區', 1), ('南京市', 2), ('蘇州市', 2), ('常州市', 2),
Time of Update: 2018-12-06
代碼Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://
Time of Update: 2018-12-06
<iframe id="frame_content" src="iframe_b.html" scrolling="no" frameborder="0" onload="this.height=100"></iframe><script type="text/javascript">function reinitIframe(){var iframe = document.getElementById("frame_content");try{var bHe
Time of Update: 2018-12-06
這個function主要是用來format傳入的浮點型的字串。strFloat:傳入的浮點型字串;minDecimals: 最小保留小數位;例如: 傳入 strFloat = "0.1"; minDecimal = 2則返回的結果為:0.10傳入 strFloat = "0.123"; minDecimal = 2則返回的結果為:0.123傳入 strFloat = ".1"; minDecimal = 2則返回的結果為:0.10傳入 strFloat = "0001.100
Time of Update: 2018-12-06
@echo onset ymd=%date:~0,4%%date:~5,2%%date:~8,2%set hour=%time:~0,2%if /i %hour% lss 10 (set hour=0%hour:~1,1%)set ymd_t=%ymd%_%hour%%time:~3,2%%time:~6,2%iisreset test1 Xcopy \\RemoteFilePath\src\*.* E:\UPM_ReadyDeploy\ /s/e/r/y >> E:\GetDepl
Time of Update: 2018-12-06
SELECT creation_time N'語句編譯時間' ,last_execution_time N'上次執行時間' --,COALESCE(DB_NAME(st.dbid), DB_NAME(CAST(pa.value as int))+'*') AS '資料庫名' ,total_physical_reads N'物理讀取總次數' ,total_logical_reads/execution_count N'每次邏輯讀次數'
Time of Update: 2018-12-06
SimpleModal
Time of Update: 2018-12-06
DECLARE @products TABLE( City varchar(50), Product varchar(50), Price decimal)DECLARE @productPrice TABLE( City varchar(50), P1 decimal, P2 decimal, P3 decimal)INSERT INTO @productsSELECT 'Shanghai', 'P1', 50 UNIONSELECT
Time of Update: 2018-12-06
@echo onset ymd=%date:~0,4%%date:~5,2%%date:~8,2%set ymd_t=%ymd%_%time:~0,2%%time:~3,2%%time:~6,2%iisreset demo Xcopy \\jt\deploy\src\*.* E:\test_Deploy\ /s/e/r/y >> E:\Package/log/log-%ymd_t%.txtXcopy \\jt\deploy\src\WebUI\bin\*.dll
Time of Update: 2018-12-06
using System;using System.Collections.Generic;using System.Security.Cryptography;using System.IO;using System.Text;namespace WB.OBE.OES.Common{ public static class EncryptExtensions { private static byte[] Keys = { 0xEF, 0xAB, 0x56, 0x78
Time of Update: 2018-12-06
v$session,v$session_wait,v$session_wait_history,v$active_session_history 1、v$session:串連將產生會話,當前會話的資訊儲存在v$session中,串連斷開後消失;2、v$session_wait:將當前會話中正在等待的工作階段狀態複製一份到視圖,斷開後消失(等待會話生命週期最後1次等待);3、v$session_wait_history:儲存每個活動session在v$session_wait中最近10次的等待事
Time of Update: 2018-12-06
Postfix+courier-imap: ubuntu下用postfix搭建郵件伺服器 http://blog.csdn.net/bird_wang/article/details/4225113 PostfixBasicSetupHowto https://help.ubuntu.com/community/PostfixBasicSetupHowto courier-imap +squirrelMail: 在ubuntu下用squirrelmail架設webmail http:
Time of Update: 2018-12-06
[轉] http://www.cnblogs.com/witty/archive/2012/04/06/2435311.html常量指標 指標常量 指向常量的指標常量三個名詞雖然非常繞嘴,不過說的非常準確。用中國話的語義分析就可以很方便地把三個概念區分開。一) 常量指標常量是形容詞,指標是名詞,以指標為中心的一個偏正結構短語。這樣看,常量指標本質是指標,常量修飾它,表示這個指標乃是一個指向常量的指標(變數)。指標指向的對象是常量,那麼這個對象不能被更改。在C/C++中,常量指標是這樣聲明的:1)
Time of Update: 2018-12-06
[轉] http://blog.csdn.net/clozxy/article/details/5679887一 const基礎 如果const關鍵字不涉及到指標,我們很好理解,下面是涉及到指標的情況: int b = 500; const int* a = &b; [1] int const *a = &b; [2]