發表文章

目前顯示的是 5月, 2008的文章

Web.config 內各種連接資料庫語法

在 內輸入以下語法 連接 Access 語法 (ODBC) 不推薦

判斷使用者使用的作業系統

private void GetOSVersion() { // Get OperatingSystem information from the system namespace. System.OperatingSystem osInfo = System.Environment.OSVersion; // Determine the platform. switch (osInfo.Platform) { // Platform is Windows 95, Windows 98, // Windows 98 Second Edition, or Windows Me. case System.PlatformID.Win32Windows: intReturn = 0; switch (osInfo.Version.Minor) { case 0: MessageBox.Show("Windows 95"); break; case 10: if (osInfo.Version.Revision.ToString() == "2222A") MessageBox.Show("Windows 98 Second Edition"); else MessageBox.Show("Windows 98"); break; case 90: MessageBox.Show("Windows Me"); break;