介紹 ASP(Active Server Pages)是一種伺服器方的指令碼技術,它動態地定位和發送由使用者請求的資訊。為了成功地使用ASP,你應該在開發和管理你的項目的實踐中,使用計劃。本文是為系統管理員,網路作家,及計劃或考慮使用ASP的網路應用程式開發人員而編寫的。本文中的資訊將會協助你計劃開發和管理安全的,組織良好,易於理解的ASP應用程式。ASP或瀏覽器指令碼
程式 DeleteFolder Method<br>Deletes a specified folder and its contents.<br><br>object.DeleteFolder folderspec[, force] <br><br>Arguments <br>object<br><br>Required. Always the
cookie Cookies<br>The Cookies collection sets the value of a cookie. If the specified cookie does not exist, it is created. If the cookie exists, it takes the new value and the old value is discarded.<br><br>
錯誤 You just finished your ASP application in time, barely making the dealine! As you upload the final version to the webserver, you receive an email from your supervisor indicating that he's ready for your demo. You
視圖 Windows作業系統中的資源管理員是微軟公司非常成功的檔案管理軟體。它的左邊是整個檔案系統的樹形視圖,右邊是目前的目錄的檔案(夾)列表,為檔案管理提供了一個操作簡單、使用方便的使用者介面。但是,微軟公司的IE瀏覽器卻沒有提供相類似的功能,如果能通過基於瀏覽器/Web伺服器架構為使用者提供一個與Windows 的資源管理員相類似的遠程檔案管理工具,將會極大地方便使用者的使用。基於這種考慮,筆者用ASP技術實現了一個與 Windows
'Uses the Timespan method to subtract a certain number of daysFunction Date1() Dim NewTime as DateTime NewTime = DateTime.Now.Subtract( New TimeSpan(7, 0, 0, 0) )