-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
923 lines (592 loc) · 34 KB
/
index.html
File metadata and controls
923 lines (592 loc) · 34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
<!DOCTYPE html>
<html lang="zh-tw">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="generator" content="Owen's Blog">
<title>Owen's Blog</title>
<meta name="author" content="Owen">
<link rel="icon" href="https://davidpccu.github.io/images/favicon/favicon.ico">
<meta name="description" content="Learning note / Web developer / Asp.Net">
<meta property="og:type" content="blog">
<meta property="og:title" content="Owen's Blog">
<meta property="og:url" content="https://lwsu.com.tw/Blog/index.html">
<meta property="og:site_name" content="Owen's Blog">
<meta property="og:description" content="Learning note / Web developer / Asp.Net">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Owen's Blog">
<meta name="twitter:description" content="Learning note / Web developer / Asp.Net">
<meta property="og:image" content="https://lwsu.com.tw/Blog/assets/images/lwsu.png"/>
<!--STYLES-->
<link rel="stylesheet" href="/Blog/assets/css/style-8hfmtg5uzzgkxvwsnfmhlkjx03l2uf6jhaegdt3ctxfq8wxsch9xpfbo21c7.min.css">
<!--STYLES END-->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-98285343-2']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div id="blog">
<!-- Define author's picture -->
<header id="header" data-behavior="1">
<i id="btn-open-sidebar" class="fa fa-lg fa-bars"></i>
<div class="header-title">
<a class="header-title-link" href="/Blog/ ">Owen's Blog</a>
</div>
<a class="header-right-picture "
href="#about">
<img class="header-picture" src="/Blog/assets/images/lwsu.png" alt="作者的圖片"/>
</a>
</header>
<!-- Define author's picture -->
<nav id="sidebar" data-behavior="1">
<div class="sidebar-container">
<div class="sidebar-profile">
<a href="/Blog/#about">
<img class="sidebar-profile-picture" src="/Blog/assets/images/lwsu.png" alt="作者的圖片"/>
</a>
<h4 class="sidebar-profile-name">Owen</h4>
<h5 class="sidebar-profile-bio"><p>風吹柳動,未見柳折</p>
</h5>
</div>
<ul class="sidebar-buttons">
<li class="sidebar-button">
<a class="sidebar-button-link "
href="/Blog/ "
>
<i class="sidebar-button-icon fa fa-lg fa-home"></i>
<span class="sidebar-button-desc">首頁</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link "
href="/Blog/all-categories"
>
<i class="sidebar-button-icon fa fa-lg fa-bookmark"></i>
<span class="sidebar-button-desc">分類</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link "
href="/Blog/all-tags"
>
<i class="sidebar-button-icon fa fa-lg fa-tags"></i>
<span class="sidebar-button-desc">標籤</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link "
href="/Blog/all-archives"
>
<i class="sidebar-button-icon fa fa-lg fa-archive"></i>
<span class="sidebar-button-desc">所有文章</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link " href="https://davidpccu.github.io/" target="_blank" rel="noopener">
<i class="sidebar-button-icon fa fa-lg fa-question"></i>
<span class="sidebar-button-desc">關於</span>
</a>
</li>
</ul>
<ul class="sidebar-buttons">
</ul>
</div>
</nav>
<div id="main" data-behavior="1"
class="
hasCoverMetaIn
">
<section class="postShorten-group main-content-wrap">
<article class="postShorten postShorten--thumbnailimg-right" itemscope itemType="http://schema.org/BlogPosting">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title" itemprop="headline">
<a class="link-unstyled" href="/Blog/2019/10/04/20191004_DevTools/">
Chrome DevTools Request Headers 隱藏資訊
</a>
</h1>
<div class="postShorten-meta">
<time itemprop="datePublished" datetime="2019-10-04T12:00:00+08:00">
10月 04, 2019
</time>
<span>分類 </span>
<a class="category-link" href="/Blog/categories/爬蟲/">爬蟲</a>
</div>
</div>
<div class="postShorten-excerpt" itemprop="articleBody">
<p>想要進行數據分析,必須先精通爬蟲蒐集數據</p>
<p>最近在寫爬蟲檢視 DevTools Headers 資訊時,發現跳出下面這行警告訊息:</p>
<p><img src="../../../../img/20191004_1.jpg" alt=""></p>
<blockquote>
<p>Provisional headers are shown</p>
</blockquote>
<a href="/Blog/2019/10/04/20191004_DevTools/" class="postShorten-excerpt_link link">
繼續閱讀
</a>
</div>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg-right" itemscope itemType="http://schema.org/BlogPosting">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title" itemprop="headline">
<a class="link-unstyled" href="/Blog/2019/06/11/20190611_Insurance/">
保險筆記
</a>
</h1>
<div class="postShorten-meta">
<time itemprop="datePublished" datetime="2019-06-11T12:00:00+08:00">
6月 11, 2019
</time>
<span>分類 </span>
<a class="category-link" href="/Blog/categories/投資/">投資</a>
</div>
</div>
<div class="postShorten-excerpt" itemprop="articleBody">
<p>台灣人買保險,不是為了保險。為的是儲蓄、投資、日後要拿回多少錢。不把保險當保險看,無法將保險當成支出,就會讓保險失去它的本意,就會讓保險不再保險。</p>
<a href="/Blog/2019/06/11/20190611_Insurance/" class="postShorten-excerpt_link link">
繼續閱讀
</a>
</div>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg-right" itemscope itemType="http://schema.org/BlogPosting">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title" itemprop="headline">
<a class="link-unstyled" href="/Blog/2019/03/15/20190315_ETF/">
前進美國劵商
</a>
</h1>
<div class="postShorten-meta">
<time itemprop="datePublished" datetime="2019-03-15T12:00:00+08:00">
3月 15, 2019
</time>
<span>分類 </span>
<a class="category-link" href="/Blog/categories/投資/">投資</a>
</div>
</div>
<div class="postShorten-excerpt" itemprop="articleBody">
<h3 id="為何要開海外劵商戶頭"><a href="#為何要開海外劵商戶頭" class="headerlink" title="為何要開海外劵商戶頭?"></a>為何要開海外劵商戶頭?</h3><p> 曾經我是個基金投資者,在三年(2015~2018)的時間內買了許多隻基金,我全部的基金皆是透過國內銀行、證劵、基富通購買。</p>
<a href="/Blog/2019/03/15/20190315_ETF/" class="postShorten-excerpt_link link">
繼續閱讀
</a>
</div>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg-right" itemscope itemType="http://schema.org/BlogPosting">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title" itemprop="headline">
<a class="link-unstyled" href="/Blog/2019/03/14/20190314_ASPX/">
ASP.NET - 閏年踩雷
</a>
</h1>
<div class="postShorten-meta">
<time itemprop="datePublished" datetime="2019-03-14T12:00:00+08:00">
3月 14, 2019
</time>
<span>分類 </span>
<a class="category-link" href="/Blog/categories/Asp-Net/">Asp.Net</a>
</div>
</div>
<div class="postShorten-excerpt" itemprop="articleBody">
<p>出來混總是要還債的</p>
<p>只是沒想到這麼快就遇到程式在日期轉換,閏年掛掉的問題</p>
<p>在這裡做個簡單的紀錄</p>
<a href="/Blog/2019/03/14/20190314_ASPX/" class="postShorten-excerpt_link link">
繼續閱讀
</a>
</div>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg-right" itemscope itemType="http://schema.org/BlogPosting">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title" itemprop="headline">
<a class="link-unstyled" href="/Blog/2018/05/29/20180529_ASPX/">
ASP.NET - showModalDialog + IFrame 網頁無法複製貼上
</a>
</h1>
<div class="postShorten-meta">
<time itemprop="datePublished" datetime="2018-05-29T12:00:00+08:00">
5月 29, 2018
</time>
<span>分類 </span>
<a class="category-link" href="/Blog/categories/Asp-Net/">Asp.Net</a>
</div>
</div>
<div class="postShorten-excerpt" itemprop="articleBody">
<p>某個慵懶地下午收到業務單位反應</p>
<p>某隻使用showModalDialog的程式無法複製貼上,造成他們很大的困擾</p>
<a href="/Blog/2018/05/29/20180529_ASPX/" class="postShorten-excerpt_link link">
繼續閱讀
</a>
</div>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg-right" itemscope itemType="http://schema.org/BlogPosting">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title" itemprop="headline">
<a class="link-unstyled" href="/Blog/2018/04/02/20180402__Nodejs/">
Line Chatbot with google sheet
</a>
</h1>
<div class="postShorten-meta">
<time itemprop="datePublished" datetime="2018-04-02T12:00:00+08:00">
4月 02, 2018
</time>
<span>分類 </span>
<a class="category-link" href="/Blog/categories/Nodejs/">Nodejs</a>
</div>
</div>
<div class="postShorten-excerpt" itemprop="articleBody">
<h1 id="Line-Chatbot"><a href="#Line-Chatbot" class="headerlink" title="Line Chatbot"></a>Line Chatbot</h1><p>使用 Node.js 建立 Line機器人 利用Google試算表紀錄聊天內容</p>
<p><img src="https://is1-ssl.mzstatic.com/image/thumb/Purple118/v4/2a/d0/87/2ad08788-c5a6-0e4f-1142-577a500b970a/AppIcon-1x_U007emarketing-85-220-0-5.png/230x0w.jpg" width="20%"></p>
<a href="/Blog/2018/04/02/20180402__Nodejs/" class="postShorten-excerpt_link link">
繼續閱讀
</a>
</div>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg-right" itemscope itemType="http://schema.org/BlogPosting">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title" itemprop="headline">
<a class="link-unstyled" href="/Blog/2018/02/14/20180214_JS/">
JavaScript - Array.prototype 屬性 [筆記]
</a>
</h1>
<div class="postShorten-meta">
<time itemprop="datePublished" datetime="2018-02-14T12:00:00+08:00">
2月 14, 2018
</time>
<span>分類 </span>
<a class="category-link" href="/Blog/categories/JavaScript/">JavaScript</a>
</div>
</div>
<div class="postShorten-excerpt" itemprop="articleBody">
<p>所有的 JavaScript 內建物件都擁有一個唯讀的 prototype 屬性。</p>
<p>可以為原型添加『屬性』和『方法』,但是無法為該內建物件指派不同的原型,不過卻可以為使用者定義的物件指派新原型。</p>
<a href="/Blog/2018/02/14/20180214_JS/" class="postShorten-excerpt_link link">
繼續閱讀
</a>
</div>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg-right" itemscope itemType="http://schema.org/BlogPosting">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title" itemprop="headline">
<a class="link-unstyled" href="/Blog/2017/12/21/20171221_Aspx/">
ASP.NET - DataTables join 多個 table [LINQ]
</a>
</h1>
<div class="postShorten-meta">
<time itemprop="datePublished" datetime="2017-12-21T12:00:00+08:00">
12月 21, 2017
</time>
<span>分類 </span>
<a class="category-link" href="/Blog/categories/Asp-Net/">Asp.Net</a>
</div>
</div>
<div class="postShorten-excerpt" itemprop="articleBody">
<p>當資料來源為XML時,當你轉換成dataset時,會有資料變成多個table的情況</p>
<p>透過 LINQ 去 Join 2 個DataTable,並回傳DataTable<br>
<a href="/Blog/2017/12/21/20171221_Aspx/" class="postShorten-excerpt_link link">
繼續閱讀
</a>
</div>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg-right" itemscope itemType="http://schema.org/BlogPosting">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title" itemprop="headline">
<a class="link-unstyled" href="/Blog/2017/12/19/20171219_Nodejs/">
Line Chatbot with KKBOX Open API
</a>
</h1>
<div class="postShorten-meta">
<time itemprop="datePublished" datetime="2017-12-19T12:00:00+08:00">
12月 19, 2017
</time>
<span>分類 </span>
<a class="category-link" href="/Blog/categories/Nodejs/">Nodejs</a>
</div>
</div>
<div class="postShorten-excerpt" itemprop="articleBody">
<p>使用 Node.js 建立 Line機器人呼叫 KKBOX open API</p>
<a href="/Blog/2017/12/19/20171219_Nodejs/" class="postShorten-excerpt_link link">
繼續閱讀
</a>
</div>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg-right" itemscope itemType="http://schema.org/BlogPosting">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title" itemprop="headline">
<a class="link-unstyled" href="/Blog/2017/11/17/20171117_ETH/">
什麼是比特幣?
</a>
</h1>
<div class="postShorten-meta">
<time itemprop="datePublished" datetime="2017-11-17T12:00:00+08:00">
11月 17, 2017
</time>
<span>分類 </span>
<a class="category-link" href="/Blog/categories/BTC/">BTC</a>
</div>
</div>
<div class="postShorten-excerpt" itemprop="articleBody">
<p>比特幣、以太坊、區塊鏈應用相關文章整理</p>
<a href="/Blog/2017/11/17/20171117_ETH/" class="postShorten-excerpt_link link">
繼續閱讀
</a>
</div>
</div>
</article>
<div class="pagination-bar">
<ul class="pagination">
<li class="pagination-next">
<a class="btn btn--default btn--small" href="/Blog/page/2/">
<span>下一頁</span>
<i class="fa fa-angle-right text-base icon-ml"></i>
</a>
</li>
<li class="pagination-number">第 1 頁 共 3 頁</li>
</ul>
</div>
</section>
<footer id="footer" class="main-content-wrap">
<span class="copyrights">
Copyrights © 2019 Owen. All Rights Reserved.
</span>
</footer>
</div>
</div>
<div id="about">
<div id="about-card">
<div id="about-btn-close">
<i class="fa fa-remove"></i>
</div>
<img id="about-card-picture" src="/Blog/assets/images/lwsu.png" alt="作者的圖片"/>
<h4 id="about-card-name">Owen</h4>
<div id="about-card-bio"><p>風吹柳動,未見柳折</p>
</div>
<div id="about-card-job">
<i class="fa fa-briefcase"></i>
<br/>
<p>Web developer</p>
</div>
<div id="about-card-location">
<i class="fa fa-map-marker"></i>
<br/>
Taiwan
</div>
</div>
</div>
<div id="algolia-search-modal" class="modal-container">
<div class="modal">
<div class="modal-header">
<span class="close-button"><i class="fa fa-close"></i></span>
<a href="https://algolia.com" target="_blank" rel="noopener" class="searchby-algolia text-color-light link-unstyled">
<span class="searchby-algolia-text text-color-light text-small">by</span>
<img class="searchby-algolia-logo" src="https://www.algolia.com/static_assets/images/press/downloads/algolia-light.svg">
</a>
<i class="search-icon fa fa-search"></i>
<form id="algolia-search-form">
<input type="text" id="algolia-search-input" name="search"
class="form-control input--large search-input" placeholder="Search "
/>
</form>
</div>
<div class="modal-body">
<div class="no-result text-color-light text-center">沒有找到文章</div>
<div class="results">
<div class="media">
<div class="media-body">
<a class="link-unstyled" href="https://lwsu.com.tw/Blog/2017/05/11/20170511_Hexo/">
<h3 class="media-heading">Hexo 指令</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
2017年5月11日
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>Welcome to <a href="https://hexo.io/" target="_blank" rel="external">Hexo</a>! This is your very first post. Check <a href="https://hexo.io/docs/" target="_blank" rel="external">documentation</a> for more info. If you get any problems when using Hexo, you can find the answer in <a href="https://hexo.io/docs/troubleshooting.html" target="_blank" rel="external">troubleshooting</a> or you can ask me on <a href="https://github.com/hexojs/hexo/issues" target="_blank" rel="external">GitHub</a>.</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-body">
<a class="link-unstyled" href="https://lwsu.com.tw/Blog/2017/05/12/20170512_Tranquilpeak/">
<h3 class="media-heading">Tranquilpeak Theme 快速安裝、設定</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
2017年5月12日
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p><a href="https://gitter.im/LouisBarranqueiro/hexo-theme-tranquilpeak?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge" target="_blank" rel="external"><img src="https://badges.gitter.im/Join%20Chat.svg" alt="Join the chat at https://gitter.im/LouisBarranqueiro/hexo-theme-tranquilpeak"></a></p>
<p>A gorgeous responsive theme for Hexo blog framework </p>
<p><a href="http://louisbarranqueiro.github.io/hexo-theme-tranquilpeak" target="_blank" rel="external"><img src="https://d1u9biwaxjngwg.cloudfront.net/showcases/showcase-v1.10.jpg" alt="Tranquilpeak"></a></p>
<p>Quick Start!</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-body">
<a class="link-unstyled" href="https://lwsu.com.tw/Blog/2017/05/16/20170516_Aspx/">
<h3 class="media-heading">驗證網頁是否執行 Validator</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
2017年5月16日
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>驗證網頁是否執行 Validator,避免被有心人修改後導致不會觸發Validator</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-body">
<a class="link-unstyled" href="https://lwsu.com.tw/Blog/2017/05/17/20170517_Aspx/">
<h3 class="media-heading">PostBack 後回到原來停留的位置</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
2017年5月17日
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>在 PostBack後網頁通常會回到最頂端的位置,目前有下面三個方式可以讓單頁或整個Web或目錄PostBack後回到原來停留的位置<br>但是,如果網頁頁面長度不一,PostBack後回到的位置也會有所差異。</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-body">
<a class="link-unstyled" href="https://lwsu.com.tw/Blog/2017/05/24/20170524_Aspx/">
<h3 class="media-heading">ASP.NET取得IP</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
2017年5月24日
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>一般在ASP.NET通常會使用<br>Request.ServerVariables[“REMOTE_ADDR”]來取得使用者的IP。</p>
<p>但遇到代理伺服器時,則IP會變成是代理伺服器的,這時我們必須使用另外的方式取得使用者的IP。</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-body">
<a class="link-unstyled" href="https://lwsu.com.tw/Blog/2017/06/01/20170601_Aspx/">
<h3 class="media-heading">『筆記』 Array陣列中加入元素</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
2017年6月1日
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>Array陣列中加入元素</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-body">
<a class="link-unstyled" href="https://lwsu.com.tw/Blog/2017/06/08/20170608_Html/">
<h3 class="media-heading">『筆記』 非同步載入CSS (Lazy Load CSS)</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
2017年6月8日
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>以往當網頁要套用CSS時,都會將css以link的方式,寫在網頁的head間。<br>這時會看到,一開始畫面是全白,直到css全部載入完畢後,畫面才會一次顯示出來。</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-body">
<a class="link-unstyled" href="https://lwsu.com.tw/Blog/2017/06/08/20170608_JS/">
<h3 class="media-heading">『筆記』 Script Tag - async & defer</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
2017年6月8日
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>我們常用的JS腳本標籤,有兩個屬文件下載執行相關的屬性:延遲和異步</p>
<p>筆記一下 Hhml5 新增屬性 async 和 defer 差別</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-body">
<a class="link-unstyled" href="https://lwsu.com.tw/Blog/2017/06/15/20170615_SQL/">
<h3 class="media-heading">T-SQL - 取每一群組的第一筆</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
2017年6月15日
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>筆記 T-SQL</p>
<p>取每一群組的第一筆</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-body">
<a class="link-unstyled" href="https://lwsu.com.tw/Blog/2017/06/23/20170623_ETH/">
<h3 class="media-heading">乙太幣 - 簡介</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
2017年6月23日
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>以太坊(Ethereum),是一個開源的智慧合約的公共區塊鏈。</p>
<p>乙太幣(ETH)是以太坊(Ethereum)的數位貨幣,開發者們需要支付乙太幣(ETH)來進行應用。</p>
<p>通過其專用加密貨幣乙太幣(Ether)提供去中心化的虛擬機器(Ethereum Virtual Machin)來處理對等合約。</p>
<p>截至2017年6月,乙太幣是市值第二高的加密貨幣,僅次於比特幣。<br></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
</div>
</div>
<div class="modal-footer">
<p class="results-count text-medium"
data-message-zero="沒有找到文章"
data-message-one="找到 1 篇文章"
data-message-other="找到 {n} 篇文章">
找到 25 篇文章
</p>
</div>
</div>
</div>
<div id="cover" style="background-image:url('/Blog/assets/images/cover.jpg');"></div>
<!--SCRIPTS-->
<script src="/Blog/assets/js/script-lntdswfnsa2hgs7n4timmldw3koe4o5bwpgag1jebky598fqvzqdccxejqc5.min.js"></script>
<!--SCRIPTS END-->
</body>
</html>