深圳升蓝软件
数据库开发 .Net技术  |  ASP技术 PHP技术 JSP技术 应用技术类   
Hiblue Software

ASP应用

技术资料 > ASP技术 > ASP应用
通过表单创建word的一个例子
先创建一个表单,随便存一个名字好了。 xxx.html <form action="word_create.asp"> Name: <input type="text" name="Name" size="50" maxlength="100"> Email: <input type="text" name="Email" size="50" maxlength="100"> Comments: <textarea cols="50" rows="10" name="comments"></t……
DateDiff的用法
DateDiff 函数 返回 Variant (Long) 的值,表示两个指定日期间的时间间隔数目。 语法 DateDiff(interval, date1, date2[, firstdayofweek][, firstweekofyear]]) DateDiff 函数语法中有下列命名参数: 部分 描述 interval 必要。字符串表达式,表示用来计算date1 和 date2 的时间差的时间间隔 D……
论坛树状记录表的堆栈展开
由于工作原因,涉及到一个树状存放记录的表,要求程序中把树状表全部展开,并输出相应的数据內容。由于涉及到此种操作的地方很多,比如网络上的\\\"论坛"就是典型的采用树状存放记录的表,特此整理出来与大家分享。 在很多资料都有介绍展开树状记录的程序,但是很多是采用递归的方法。我們知道,递归的方法逻辑比较……
关于释放session的两篇文章(二)
Deleting a Subset of Session Variables When using Sessions to store variables in, I use a naming convention - for example, for all Customer related info I prefix the session variable with the substring Customer. (so for the CustomerID it would be Customer.ID, the customer username would be Custo……
关于释放session的两篇文章(一)
If you are using ASP 3.0 (the version of ASP that comes with Windows 2000 / IIS 5) then you can use the following syntax: Session.Contents.Remove "name" where Name is the name of the Session variable you wish to remove. Removing Session variables in this way has its advantages over using the f……
深入研究Application和Session对象(包括global.asa)3
三、Global.asa   ASP的Application和Session对象体现了其他ASP内置对象所没有的特征--事件。每一个访客访问服务器时都会触发一个OnStart事件(第一个访客会同时触发Application和Session的OnStart事件,但Application先于Session),每个访客的会话结束时都会触发一个OnEnd事件(最后一个访客会话结束时会同时触发App……
深入研究Application和Session对象(包括global.asa)2
二、Session对象的成员概述   Session对象的成员比Application对象多一项属性,即:集合、属性、方法、事件   ⒈Session对象的集合   Contents :没有使用<OBJECT>元素定义的存储于特定Session对象的所有变量的集合。   StaticObject:使用<OBJECT>元素定义的、存储于Session对象中的所有变……
深入研究Application和Session对象(包括global.asa)1
用ASP编写虚拟社区、网上购物等程序时,Application和Session对象具有举足轻重的作用,能够灵活合理地运用这两个对象是提高程序质量的关键。下面让笔者根据自己在这方面的经验,向大家深入介绍一下ASP的这两个内建对象。   一、Application对象的成员概述   Application对象成员包括Application对象的集合、方法和……
ASP实现播放Flash的例子
<!-- #include file = "DB.fun" --> <% mingcheng=request("mingcheng") sec=Request("score") session("mingcheng")=mingcheng session("sec")=sec If session("ID")="" then response.redirect "qzhuce.asp" response.end End If dim time1 sec=Request("score") Set conn = GetMdbConnectio……
怎样在ASP里面创建统计图表
下面给出了一个通用的函数及其用例,请参考。 <% REM 首先我们设计一个ShowCart函数,其中 REM aValues 是一个数值数组 REM aLables 是横坐标的标号 REM strTitle是这个统计图的标题 REM strXAxisLable X轴的标签 REM strYAxisLable Y轴的标签 Sub ShowChart(ByRef aValues, ByRef aLabels, ByRef strTitle, By……
关于流行开发工具(Java,C,C++,Vb,Dephi等等)的几个?/a>
1。工欲善其事,比先利其器。 程序员问的最多的问题可能就是那个语言最好,最有前(钱)途?什么样的语言最厉害呢? 其实这里边存在着一个很大的误区。那就是你适合干什么,你要开发什么。对于程序员来说,Java也好,C++也好,vb也好,都是用来完成某一项具体的项目的一种工具罢了。不过,既然是工具,就看你怎么用了……
不用组件实现上载功能(英文NT)2
'---- file name /handld_upload.asp <% Option Explicit %> <% Response.Expires=0 Response.Buffer = TRUE Response.Clear Const IMAGE_SIZE = "width=""200"" height=""150""" Dim UploadRequest Set UploadRequest = Server.CreateObject("Scripting.Dictionary") Dim byteCount, RequestBin ……
不用组件实现上载功能(英文NT)
'---- file name /upaoad.asp/ <% Public Function BuildUploadRequest(strRequestBin) Dim PosBeg, PosEnd, boundary, boundaryPos 'Get the boundary PosBeg = 1 PosEnd = InstrB(PosBeg,strRequestBin,getByteString(chr(13))) boundary = MidB(strRequestBin,PosBeg,PosEnd-PosBeg) ……
MSGBOX返回值
MsgBox Function Displays a message in a dialog box, waits for the user to click a button, and returns a value indicating which button the user clicked. MsgBox(prompt[, buttons][, title][, helpfile, context]) Arguments prompt String expression displayed as the message in the dialog box. Th……
超级留言本制作实例<1>
做了几年的网页,到处留言千千万,用过各种留言本万万千。可惜令我喜欢的留言本真少(55555),慢慢的速度让我无法忍受,丑陋的界面让我心烦,图标更是让人作呕,所以我下决心写一个自己的超级留言本,阿余半夜起来,挑灯奋战,忙了一整天,终于。咱的“超级留言本1.0”出现了,它速度极快。因为根本就是HTML的,并没有一个……
在ASP中如何将代码生成的文件设为只读
Attributes Property Sets or returns the attributes of files or folders. Read/write or read-only, depending on the attribute. object.Attributes [= newattributes] Arguments object Required. Always the name of a File or Folder object. newattributes Optional. If provided, newattributes……
一段递归生成类似Windows资源管理器一样效果的树状菜?/a>
附录:数据结构及测试数据 数据库说明 ID:节点ID NodeName:节点名称 BrotherNode:兄弟节点,当前节点的下一个兄弟节点的ID SonNode:子节点,当前节点的第一个子节点的ID 测试数据 ID NodeName ParentNode SonNode BrotherNode 01 管理文挡 00 0101 02……
一段递归生成类似Windows资源管理器一样效果的树状菜?/a>
<HTML> <HEAD> <META content="text/html; charset=gb2312" http-equiv=Content-Type> <SCRIPT lanuage="JScript"> function turnit(ss,ii,aa) { if (ss.style.display=="none") {ss.style.display=""; aa.style.display=""; ii.src="minus.gif"; } else {ss.style.d……
ASP中,常用的变量命名规则
在ASP编程中,如果你遵守了下面的变量命名规则,你的代码的可行性、可维护性将会更好: 一般命名规则 前缀 变量类型 例子 b or bln Boolean bSuccess c or cur Currency cAmount d or dbl Double dblQuantity dt or dat Date and Time ……
用ASP制作在线测试
<% CurQ = Request.Form("CurQ") Answ = Request.Form("Answ") correct=Request.Form("Correct") wrong=Request.Form("Wrong") 'Poor Man's IsNull Code goes here If PoorMansIsNull(CurQ) Then CurQ = 1 correct = 0 wrong = 0 End I……
« ..[4][5][6][7][8][9] » 20条/页 共180
Copyright © 2001-2008 Shenzhen Hiblue Software Team All rights reserved