国产97色在线|亚洲-欧美人妻另类制服丝袜-欧美人成国产91视频-殷素素一女战二夫|www.ycjrc.net

位置 : 首頁 > 編程開發(fā)
java 讀取文件頭信息
package com;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.IOException;import java.util.Date;import java.util.HashMap;import java.util.Iterator;import java.util.Map;
獨(dú)孤劍 2016-12-30 12:42 閱讀:2166
打印機(jī)和傳真
System.Diagnostics.Process.Start(@"control.exe"); //直接打開控制面板System.Diagnostics.Process.Start(@"inetcpl.cpl"); //intetnet屬性 System.Diagnostics.Process.Start(@"mmsys.cpl");//聲音System.Diagnost
獨(dú)孤劍 2016-12-29 22:28 閱讀:1115
判斷操作系統(tǒng)是32位還是64位
引入System.Management,再引用usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Text;usingSystem.Windows.Forms;usingSystem.Managemen
獨(dú)孤劍 2016-12-29 22:25 閱讀:1014
將 UserControl 創(chuàng)建為設(shè)計(jì)時(shí)控件容器
概要本分步指南介紹在將 UserControl 放在 Windows 窗體上之后,如何將 UserControl 對(duì)象用作設(shè)計(jì)時(shí)控件容器。可能會(huì)有這樣的情況:您想將一個(gè)控件拖到UserControl 中。為做到這一點(diǎn), UserControl 必須用作控件容器。
獨(dú)孤劍 2016-12-28 21:22 閱讀:1173
循環(huán)遍歷不相同的元素
int[] a = { 1, 2, 3, 4, 5, 9 }; int[] b = { 1, 4, 5, 7, 8, 9 }; string s_a = ""; string s_b = ""; foreach (int i in a) {
獨(dú)孤劍 2016-12-28 21:16 閱讀:982
ASP.NET aspx 后臺(tái)代碼注冊(cè)前端控件事件
aspx 后臺(tái)代碼注冊(cè)前端控件事件,實(shí)現(xiàn)文本框中回車時(shí)彈出腳本提示。前端代碼后臺(tái)代碼public partial class Default : System.Web.UI.Page{protected void Page_Load(object sender, EventArgs e){// 方式一this.TextB
獨(dú)孤劍 2016-12-28 21:15 閱讀:1597
站點(diǎn)地圖 xml txt html
Google SiteMapGoogle SiteMap Protocol是Google自己推出的一種站點(diǎn)地圖協(xié)議,此協(xié)議文件基于早期的robots.txt文件協(xié)議,并有所升級(jí)。在Google官方指南中指出加入了Google SiteMap文件的網(wǎng)站將更有利于Google網(wǎng)頁爬行
獨(dú)孤劍 2016-12-28 21:14 閱讀:1717
session清除
Session.Abandon() '清除信息 Response.AddHeader("Refresh", "0") '刷新頁面
獨(dú)孤劍 2016-12-28 21:13 閱讀:951
在asp.net中,如何回車觸發(fā)指定按鈕的事件?
假設(shè): 解決方法: 在.aspx頁面中添加: 在Page_Load事件中添加: tbInput.Attributes.Add("onkeydown","SubmitKeyClick('btnOK');");
獨(dú)孤劍 2016-12-28 21:12 閱讀:889
Web.config customErrors節(jié)點(diǎn)
節(jié)點(diǎn)用于定義一些自定義錯(cuò)誤信息的信息。此節(jié)點(diǎn)有Mode和defaultRedirect兩個(gè)屬性,其中defaultRedirect屬性是一個(gè)可選屬性,表示應(yīng)用程序發(fā)生錯(cuò)誤時(shí)重定向到的默認(rèn)URL,如果沒有指定該屬性則顯示一般性錯(cuò)誤。Mode屬性
獨(dú)孤劍 2016-12-28 21:12 閱讀:880
ASP.NET 彈出對(duì)話框, 后臺(tái)js腳本
ASP.NET 彈出對(duì)話框, 后臺(tái)js腳本ScriptManager.RegisterStartupScript(ajaxPanel, ajaxPanel.GetType(), "", "alert('保存成功!');reftxt();", true);Page.ClientScript.RegisterStartupScript(this.GetType(), "ale
獨(dú)孤劍 2016-12-28 21:05 閱讀:964
Winform 防止程序重復(fù)打開
Winform 防止程序重復(fù)打開 using System; using System.Windows.Forms; using System.Threading;namespace Test {static class Program{/// /// The main entry point for the application./// [STAThread]static voi
獨(dú)孤劍 2016-12-28 00:35 閱讀:940
Winform 顯示窗體
Form1 f = new Form1(); f.Show();
獨(dú)孤劍 2016-12-28 00:34 閱讀:834
C#日期格式精確到毫秒
有時(shí)候我們要對(duì)時(shí)間進(jìn)行轉(zhuǎn)換,達(dá)到不同的顯示效果 默認(rèn)格式為:2009-6-24 14:33:34 如果要換成成200906,06-2009,2009-6-24或更多的該怎么辦呢 我們要用到:DateTime.ToString的方法(String, IFormatProvider) using Syst
獨(dú)孤劍 2016-12-28 00:31 閱讀:1014
C# ref參數(shù)與out參數(shù)區(qū)別
ref參數(shù)與out參數(shù)區(qū)別 1、ref在傳給方法前需要初始化,out不需要。 2、out在方法內(nèi)必須被賦值,否則會(huì)出現(xiàn)編譯錯(cuò)誤。3、out在傳給方法時(shí)會(huì)被還原至未初始化狀態(tài),所以在方法執(zhí)行前進(jìn)行初始化和不進(jìn)行效果上是一樣的。
獨(dú)孤劍 2016-12-28 00:29 閱讀:1001
在線客服