2006-01-01から1年間の記事一覧
Beagle http://opentechpress.jp/developer/article.pl?sid=06/12/21/0045241
IDEF1XER図の書き方。
http://opentechpress.jp/developer/article.pl?sid=06/12/28/0147243 http://opentechpress.jp/developer/article.pl?sid=06/12/28/023216
FireBug http://phpspot.org/blog/archives/2006/12/firebug10.html
Planet
yield
構造化プログラミング
フローチャート
vsftp http://www.thinkit.co.jp/cert/article/0612/6/2/2.htm
http://www.rememberthemilk.com/
jEdit
アルゴリズムとデータ構造
QEMU
SNMP
cURL
Mac vmwareVMwarePlayer
クロージャってなんじゃ?
ISO 9126
http://e-words.jp/w/IDS.html インターネットの危険性 クラッカー ネットワークを盗聴,破壊 →対策:F/W,アンチウイルスソフト,IDS IDS 基礎知識 IDSの働き F/Wで不正と見なされない通信を検知 無線LAN,モバイルなどLANの内側からの被害の対策 IDSの種類 NI…
セッション ビューステート リクエスト get:Request.QueryString["query"] post:Request.Form["c"] ファイルアップロード postのファイルRequest.Files["filename"] サーバ変数 ServerVariables クッキー Dim Cookie As HttpCookie If Request.Cookies("VSDE…
Server.Transfer("sampleB.aspx"); Response.Redirect("sampleB.aspx"); Server.UrlEncode
トランザクション コネクション
asp.net:http://japan.internet.com/developer/20050906/25.html 例外処理 Global.asax イベント・ハンドラ 呼び出されるタイミング ,Application_OnStart,アプリケーションの初回起動時に発生。アプリケーション変数など、アプリケーションで利用するリソー…
リストボックス void Page_Load() { if (!IsPostBack) { lb_Address.Items.Clear(); lb_Address.Items.Add(new ListItem("東京")); lb_Address.Items.Add(new ListItem("神奈川")); lb_Address.Items.Add(new ListItem("千葉")); lb_Address.Items.Add(new L…
Page_Load Page_Init
Public Sub mailsend(ByVal SSERV As String, ByVal FROM As String, ByVal MTO As String, ByVal SUBJECT As String, ByVal BODY As String) System.Web.Mail.SmtpMail.SmtpServer = SSERV System.Web.Mail.SmtpMail.Send(FROM, MTO, SUBJECT, BODY) End Sub