用ASP產生Chart (二維餅圖)

這是使用ActiveX Controls 的<%@ Language=VBScript %><HTML><HEAD><META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0"></HEAD><BODY><OBJECT classid="clsid:3A2B370C-BA0A-11D1-B137-0000F87

Asp HTTP 簡要介紹

首頁:http://www.serverobjects.com/products.htm#Asphttp  下載:http://www.serverobjects.com/comp/asphttp3.zip  關於aspHTTP  AspHTTP使你能夠使用http協議GET/POST/HEAD文檔  AspHTTP不是免費組件,需要你購買,更多資訊請參考其首頁  特性  1 GET/POST/HEAD 要求方法  2 response(回應)頭可見  3 Accept(接受)頭可修改  4

asp中的用戶端列印問題(建議加入精華區)

    以前在asp中也碰到過實現在瀏覽器中列印的問題,特別是用區域網路中的一些應用,以前的實現定義一個列印開始的標記,和一個結束的標記,然後調用window.print()方法,還有涉及在使用frame時候的列印問題,在msdn的文檔中有關於這些的比較詳細的介紹,但是,控制起來都比較的麻煩,而且對與列印比較精確的控制都比較難以實現,有很多的朋友也碰到過這個問題,最近讀了一片文章,關於在web中的列印的實現(csdn),稍作修改,貼了出來,供大家參考一下,

asp 支援中英文的截取字串函數

<html xmlns="http://www.111cn.net/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><title>asp 支援中英文的截取字串函數</title></head><body><%'txt =

asp 從html裡取得所有圖片地址

Dim strstr ="從html裡取得img標籤 <img src=yun_qi_img/20100519002423914.gif />fdafdafdajk "if str <> ""  then response.write getphoto( str )end ifFunction getphoto(strHTML) '從html裡取得img標籤   Dim objRegExp,

asp 常用幾個執行個體函數

1、檢查檔案是否存在用法樣本:If CheckFile("aa.jpg") = True Then Response.Write "OK"複製內容到剪貼簿 程式碼Function CheckFile(FileName)   On Error Resume Next   Dim FsoObj   Set FsoObj =

asp 大量刪除指定檔案代碼

DelImg="a.jpg,b.jpg,b.jpg"              img=Split(DelImg,",")              Set

asp Application 儲存 取回 遍曆執行個體

  Sub Application_OnStart  application("vi")="www.111cn.net"  application("uid")=2 End Sub '上面這段代碼是建立 Application 變數  Response.Write(Application("vi")) '輸出值

asp 刪除資料記錄並且同時刪除檔案圖片

Id=Request("Id")  If Id="" Then  Response.Write("<script>alert('刪除操作失敗:請選擇需要刪除的資訊!');hitory.go(-1);</script>")  Else  Id=Split(Id,",")     For i=0 to

asp 文本文章點擊統計代碼

class Views {        private $update_time = 1800;                        //更新,單位秒   &

一段簡單 ASP檔案上傳執行個體

本教程將告訴你需要建立一個簡單的應用程式,使使用者能夠上傳PDF檔案到伺服器的步驟,刪除現有的檔案和查看他們的瀏覽器中的檔案。這個例子使用我們自己的dgFileUpload組成部分,你可以下載一個15天的試用版在這裡,您可以按照教程和測試自己的伺服器完成的應用程式。所有的原始碼,隨著小Access 2000資料庫教程在本教程中使用,可以下載在這裡作為一個ZIP檔案。在下載並取消荏苒存檔,您的網站根目錄下建立(如的'C: inetpub wwwroot的

ASP單頁顯示檔案夾下所有圖片的代碼

<% dim fso,objFolder,objFiles dim filelist Set fso=Server.CreateObject("scripting.FileSystemObject") Set objFolder=fso.GetFolder(server.MapPath("thumbs")) Set objFiles=objFolder.Files '迴圈輸出檔案夾path下的檔案的檔案名稱 For each objFile in

asp 截取字串函數,計算一漢字等於2個英文

'str  要截取的字串'strlen 截取字數'str2 截取字串後要加的字元。如:...function gotTopic(str,strlen,str2)    if str="" or isnull(str) then        gotTopic=""       

asp 列出資料並且根據許可權刪除記錄代碼

資料庫教程串連程式set rs=server.CreateObject("adodb.recordset")set conn=server.CreateObject("adodb.connection")conn.connectionstring="provider=microsoft.jet.oledb.4.0; data source="&server.mappath("datasource/hhinfo.mdb&

asp 檔案自動複製 檔案移動 安裝程式

sub install() call fs() set folder=fsobject.getfolder(server.mappath("."))   response.write("<b>Installation documentation is complete,Installation of the following

精簡asp資料庫連接程式

<%'option explicitdim startime,conn,connstr,db,rs,rs_s,rs_s1startime=timer()db="bbhtgl/%^&$%/#.mdb"Set conn = Server.CreateObject("ADODB.Connection")connstr="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" &

asp 使用者密碼找回

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta

asp簡單使用者登陸代碼

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta

asp 視頻播放代碼

<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%><!--#include file="conn/conn.asp教程"--><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"

asp 過濾html <>敏感字元轉換成html編碼執行個體

function dvHTMLCode(byval fString) if isnull(fString) or trim(fString)="" then  dvHTMLCode=""  exit function end if    fString = replace(fString, "&gt;", ">")

總頁數: 1638 1 .... 1520 1521 1522 1523 1524 .... 1638 Go to: 前往

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.