C# 正則獲取網頁內容, 抓取html源代碼里的 titleusing System.Text.RegularExpressions;static void Main(string[] args){// 注意文本編碼, 建議選擇utf-8格式編碼, 要不容易出現亂碼string content = System.IO.File
獨孤劍
2020-12-12 16:05
閱讀:2485
C# 通過循環的方式遍歷數組中不相同的元素static void Main(string[] args){int[] arrA = { 1, 2, 3, 4, 5, 9 };int[] arrB = { 1, 4, 5, 7, 8, 9 };string result = "";// arrA中的元素不再arrB中的結果foreach (int
獨孤劍
2020-12-11 10:08
閱讀:1650
Thread.Join() 在MSDN中的解釋:Blocks the calling thread until the thread represented by this instance terminates.(在此實例表示的線程終止前,阻止調用線程。)實例應用
Test2 在 thread1.Join() 被調用后被阻
獨孤劍
2020-12-08 11:39
閱讀:2589
用C#開發程序時,重新生成,提示錯誤:在證書存儲區中找不到清單簽名證書。解決方案1:右擊項目屬性->簽名->為ClickOnce清單簽名,將勾掉的選項去掉。解決方案2:在簽名中創建一個新的簽名。解決方案3:記事本打開相應
獨孤劍
2020-12-08 11:08
閱讀:1539
C# 布爾值轉換 bool轉換class Program{static void Main(string[] args){Console.WriteLine("true: {0}", ToBoolean("true"));Console.WriteLine("false: {0}", ToBoolean("false"));Console.WriteLine("1: {0}", ToB
獨孤劍
2020-12-05 06:17
閱讀:1431
C# 創建、保存、寫入無 bom 的 utf-8 編碼文件static void Main(string[] args){// 方式一System.Text.UTF8Encoding utf8 = new System.Text.UTF8Encoding(false);using (StreamWriter sr = new StreamWriter("D:\\te
獨孤劍
2020-12-04 09:02
閱讀:2512
前臺代碼內容后臺代碼// 隱藏protected void Button1_Click(object sender, EventArgs e){//// 方式一RegisterStartupScript("", "");// 方式二Page.ClientScript.RegisterStartupScript(this.GetType(), "", "");}//
獨孤劍
2020-12-04 08:52
閱讀:1951
字段格式化代碼
DataBinder.Eval(Container.DataItem,"CreateTime","{0:yyyy-MM-dd HH:mm}")
獨孤劍
2020-12-04 08:45
閱讀:1142
ASP.NET aspx 后臺代碼執行前臺js腳本, 彈出消息, 調用函數protected void button1_Click(object sender, EventArgs e){// 設置按鈕可用RegisterStartupScript("", "");// 彈出提示Response.Write(" ");Page.ClientSc
獨孤劍
2020-12-04 08:42
閱讀:2010
ASP.NET aspx 代碼設置頁面標題protected void Page_Load(object sender, EventArgs e){this.Page.Title = "頁面標題";}效果等同于頁面標題
獨孤劍
2020-12-03 08:07
閱讀:969
添加COM引用,本機已安裝 Microsoft Office 2013,如果COM引用里沒有"Microsoft Office x.x Object Library",則需要安裝 Microsoft Office 軟件。C#代碼using System;
using System.IO;
using Word = Microsoft.Offi
獨孤劍
2020-12-02 15:47
閱讀:1310
VS版本:Visual Studio 2017MVC版本:MVC 5.0請求頁面:http://localhost/article/details/123.html路由設置routes.MapRoute("Article", // 路由名稱"Article/Details/{id}.html", // 帶有參數的 URLnew { controller
獨孤劍
2020-12-01 18:28
閱讀:1134
ashx文件沒有頁面元素,這點上區別于aspx頁面,所以在效率上要比aspx頁面高,通常用于ajax提交處理程序,實際項目中,用戶的每個請求需要判斷用戶是否登錄,可以是Cookie, Session,每個請求頁面中去寫判斷用戶是否登
獨孤劍
2020-12-01 05:47
閱讀:1761
Winform TextBox (文本框) 密碼輸入框, 輸入內容顯示*號 (星號)設置 TextBox 的 PasswordChar 屬性為'*'或者通過代碼設置this.txtPassword.PasswordChar = '*';也可以設置其他字符,不只是星號this.txtPassword.Passw
獨孤劍
2020-12-01 05:44
閱讀:2732
Winform 運行前彈出登錄窗口,輸入賬號密碼登錄成功之后再進入到主窗口,實現應用軟件的用戶登錄功能。設置登錄窗口為啟動窗口->用戶登錄邏輯->關閉登錄窗口,顯示主窗口1、修改項目的"Program.cs"文件static class P
獨孤劍
2020-12-01 05:41
閱讀:1122