於Chrome 中console下輸入~~
var i = document.createElement('iframe');
i.style.display = 'none';
document.body.appendChild(i);
window.console = i.contentWindow.console;
go for IT
/*code for living code for fun*/
2013年1月16日 星期三
2011年12月8日 星期四
C# out 跟 ref 區別
out 在呼叫前不必先被指派。
ref 在呼叫前必需先被指派。
static void main()
{ int b;
test(out b);
Response.Write(b);
int c = 5;
test2(ref c);
Response.Write(c);
}
public void test2(ref int a)
{
//a = 10;
}
public void test(out int a ) {
a = 10;
}
2011年12月2日 星期五
Sniff Localhost
有時在本機開發些服務時,會想了解封裝內容有傳些什麼
可用Fiddler 去sniff 但他無法查localhost
轉個方式,把localhost 改machine name~固的!解!
2011年11月22日 星期二
網頁擋住回上頁
參考:http://www.codeproject.com/Tips/281143/Regarding-back-button-after-signout
一般在網頁不希望,使用者按上一頁時都是設定
location.replace('http://www.somewhere.com/apage.html');
或
Response.Expires = -1;
之類的,可改用下列方式
<script type="text/javascript"> function noBack() { window.history.forward() } noBack(); window.onload = noBack; window.onpageshow = function(evt) { if (evt.persisted) noBack() } window.onunload = function() { void (0) } script>
2011年8月23日 星期二
2011年7月4日 星期一
2011年6月29日 星期三
基本mail原理~
MUA ( Mail User Agent )
MTA ( Mail Transfer Agent )
MDA ( Mail Delivery Agent )
工作流程:
寄件者<>MUA<SMTP:25>MTA(MDA)<>Internet<>MTA(MDA)<POP:110>MUA<>收件者
MUA = MS-Exchange…等
MTA = Mail Server
訂閱:
文章 (Atom)