跳到主要內容

發表文章

目前顯示的是 6月, 2012的文章

[WINDOWS]刪除登錄機碼

要刪除登錄機碼 可用notepad寫下以下的內容 Windows Registry Editor Version 5.00 [ - {要刪除的機碼位置}] 另存成.reg檔 之後執行該檔即可 Ex: Windows Registry Editor Version 5.00 [ - HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\9.0\ProjectMRUList]

[ASP] 在UTF-8的asp檔案中接收big5的參數

在ASP中有時候要接收外面回傳的big5的參數 因為通常我都是用UTF-8編碼 直接用request收Big5參數會變亂碼 因此要用以下的方式來處理 <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%> <% Session.CodePage="950"  '設定以BIG5接受 參數=Request.Form("要接收的Big5參數") Session.CodePage="65001"  '在改回以UTF-8執行程式 %>

[ASP.net] FTP upload file by FtpWebRequest

在WEB可以用FtpWebRequest這個元件上傳檔案 作法如下 [VB.net] Imports System.Web Imports System.Net Imports System.IO Dim ftpRequest As FtpWebRequest = CType(WebRequest.Create("ftp://ftpServerName/folder/" & fileName), FtpWebRequest) '先產生遠端檔案 ftpRequest.Method = WebRequestMethods.Ftp.UploadFile ftpRequest.Proxy = Nothing ftpRequest.UseBinary = True ftpRequest.Credentials = New NetworkCredential("User", "Password") Dim ff As New FileInfo(localPath & fileName) Dim fileStream As FileStream = File.Open(localPath & fileName, FileMode.Open)'讀取檔案 Dim bytes() As Byte = New Byte(ff.Length) {} fileStream.Read(bytes, 0, ff.Length) Dim streamWriter As Stream = ftpRequest.GetRequestStream() streamWriter.Write(bytes, 0, bytes.Length)'遠端寫入 streamWriter.Close()