原创 C# List集合基礎操作

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; na

原创 List複合集合操作

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; na

原创 C#總結筆記

1,Convert.ToInt32(null)會返回0而不會產生任何異常,但int.Parse(null)則會產生異常。 (int)3.3=3  寫法簡單對於double類型適合。 int.Parse("3.3") Convert.ToI

原创 Oracle有關樹的查詢

1,查詢所有節點 select * from busi_jgrs start with id = '1' connect by prior id = pid; start with id = '1' 意思是以id爲1開始。 2,

原创 c#爬蟲三類

-----------------提取網頁內容---------------- 1】 <<WebClient類>> WebClient wc = new WebClient(); wc.Encoding = Encoding.U

原创 Oracle 遊標示例

一,建表 create table dept( deptno number(10) primary key, dname varchar2(30), loc varchar2(30) ); cr

原创 c#總結4

1,Convert.ToInt32(null)會返回0而不會產生任何異常,但int.Parse(null)則會產生異常。 (int)3.3=3 寫法簡單對於double類型適合。 int.Parse("3.3") Convert.ToI

原创 Bootstrap常用樣式類(v3.3.4)

0,字體大小 .h1{font-size:36px} .h2{font-size:30px} .h3{font-size:24px} .h4{font-size:18px} .h5{font-size:14px} .h6{font-si

原创 自定義$插件注意事項

/* 注:1,命名:jquery.{diy}.js          2, “jQuery.fn”是“jQuery.prototype”的簡寫   3,自執行匿名函數(function(){代碼})();防止污染全局命名空間,同時不會和別

原创 $——jquery小結

====================jquery========================== 0,$()==jquery() 1.jQuery 語法 :$(selector).action() 2. 幾乎可以選擇任何想要的元素

原创 asp.net 導出Excel 在Firefox中中文亂碼的解決方法

情況1,使用程序集:AppLibrary //保存的文件名 #region 解決火狐導出亂碼問題 if (Request.ServerVariables["http

原创 林學——知識點1

【二類調查】森林資源 規劃設計調查。 包括區劃,調查,資源統計分析。林班是資源統計單位。10年。 【一類調查】國家森林資源 連續清查。目的:掌握宏觀森林資源現狀與動態。以省爲單位.   固定樣地爲主,定期複查。5年 【】三北防護林、京津冀

原创 自定義jquery插件基本形式

一,插件js //閉包限定命名空間 (function ($) { $.fn.treeview = function (settings) { debugger var dfop = {

原创 sql總結——oracle

1】 SQL:結構化查詢語言(Structured Query Language) 2】----------------------------------------------------------

原创 c#後臺移除某個元素方法總結

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; na