WinForm 記住密碼

2022-06-14 12:15:09 字數 2070 閱讀 2161

using system;

using system.collections.generic;

using system.linq;

using system.text;

using system.runtime.interopservices;

using system.io;

namespace loginadmin

///

/// 寫入ini檔案

///

///

///

///

public void writeinivalue(string section, string key, string value)

///

/// 讀取ini檔案

///

///

///

///

public string readinivalue(string section, string key)}}

using system.componentmodel;

using system.data;

using system.drawing;

using system.linq;

using system.text;

using system.windows.forms;

using system.io;

using microsoft.win32;

namespace loginadmin

private void form1_load(object sender, eventargs e)

private void roles()

}///

/// 寫入ini

///

///

///

private void button1_click(object sender, eventargs e)

}///

/// 讀取ini

///

private void readini()}}

方法二:登錄檔

using system;

using system.collections.generic;

using system.componentmodel;

using system.data;

using system.drawing;

using system.linq;

using system.text;

using system.windows.forms;

using system.io;

using microsoft.win32;

namespace loginadmin

private void form1_load(object sender, eventargs e)

private void button1_click(object sender, eventargs e)

}///

/// 根據傳入值記住密碼

///

/// 是否記錄

/// 使用者名稱

/// 密碼

private void remember(bool remember,string username,string password)

else

}catch

}///

/// 判斷是否記住密碼

///

///

private bool hasremember()

object objp = key.getvalue("password");

if (objp != null) this.textbox2.text = objp.tostring();

return obju != null && objp != null;

}catch

}private void roles()}}

}總結:

方法一:寫入資料庫

方法二:寫入檔案——txt、xml、ini

方法三:登錄檔

winform 記住密碼功能

登入 private void btn login click object sender,eventargs e 提供ini檔案的讀操作 指定的節名 指定的鍵名 ini檔案全路徑 請將string型別轉換為相應int,long的型別 返回值不應超過255字元 public static strin...

git記住密碼

是不是受夠了http方式每次輸入使用者名稱和密碼?好吧下面說說解決這個問題的方法 方法一 git bash輸入命令 git config global credential.helper store ok,回車,這個時候已經記住了密碼,就是這樣,沒了。可能下一次還要密碼的情況,沒關係,在輸入一次,因...

Cookie記住密碼

cookie 記住密碼!登入重置 1.首頁在頁面引入這兩個 js檔案!cookie.js是操作瀏覽器cookie的 base64是對cookie進行加密的!2 獲取cookie 記住使用者名稱在瀏覽器沒關閉情況下使用。直接給使用者名稱賦cookie裡面的值 if cookie email user ...