Popular Posts
asp.net form validate // 確認更新 function confirmUpdate(     confirmMessage, /* 確認訊息 */     validateGroup, /* validate group*/     fn /* 自訂欄位檢查function */ ) {     if... Capitalize First Letters Of Words string str = "EXTERNAL"; str = new string(str.Select((c, index) => index == 0 ? char.ToUpper(c) : char.ToLower(c)).ToArray()); ... Google Analytics Events Spammers A new type of spam for Google Analytics, will Google do something for this? Related discussion: http://moz.com/community/q/ga-event-t...
Stats
Receive doPostBack params
Javascript:
__doPostBack("btnQuery", '123456');
Code behind:
string target = Request.Params["__EVENTTARGET"];  // btnQuery
string args = Request.Params["__EVENTARGUMENT"];  // 123456