关于客户端用ASP参生报表(高级篇) |
上回曾贴一篇较简单的用ASP+RDS客户端参生报表
此回贴一篇较复杂的用ASP+RDS+组件客户端参生报表
错误说明:(若提示ActiveX 元件无法参生 RDS.DataSpace)
IE需设置安全选项
操作:菜单工具->INTERNET选项->安全性->自定义
设置:起始但ActiveX不标示为安全->开启
原理说明:
客户端直接用R…… |
|
关于客户端用ASP参生报表 |
先贴一篇较简单的用ASP+RDS客户端参生报表
此文希望能进精华篇
下一回贴一篇较复杂的
说明:(若提示ActiveX 元件无法参生 RDS.DataSpace)
IE需设置安全选项
操作:菜单工具->INTERNET选项->安全性->自定义
设置 起始但ActiveX不标示为安全->开启
<html>
<head>
<META content="…… |
|
关于打印页面的一些经验 |
大家经常遇到再ie中打印表格时需要隐藏一些不需要打印的对象,比如说按钮,输入框,或者希望莫个表格显示的时候表格线是由颜色的,而打印的时候只需要有粗细之分,其实在css中可以设定在打印或者显示的不同样式,最近作了一个应用(实属逼上梁山),可以得到以上效果,下面是我的样式表。。。。
<style type="text/css"…… |
|
制作我们自己的Ebay(拍卖系统EN) - Conclusions - Pag |
Conclusions - Page 9
Chris Payne
September 11, 2000
Hopefully this article showed you that creating something as complex as an auction isn't impossible, but
just takes some forethought and imagination. You're probably not ready to take on Ebay yet, but if you
have need to set up something simi…… |
|
制作我们自己的Ebay(拍卖系统EN) - Considerations - |
Considerations - Page 8
Chris Payne
September 11, 2000
So now you've got yourself a pretty functional auction. Let's talk a bit about what we haven't covered,
and a few miscellaneous things.
Things to Add
While this auction will work, it lacks a few features of finer products. For instance,…… |
|
制作我们自己的Ebay(拍卖系统EN) - Resolving Bids - |
Resolving Bids - Page 6
Chris Payne
September 11, 2000
Function ResolveBids(ItemID)
'Set variables and create objects
dim monIncrement, monHighPrice, intAvailable, intTotItems, flgQuit
dim blnResolved
'Assume bids are resolved
blnResolved = True
strConnectionString = "DSN=MyAuction;UI…… |
|
制作我们自己的Ebay(拍卖系统EN) - Managing Bids - P |
This is the complex part - you must make sure everyone's bids are correct, update those that have proxy bids, reallocate lots to winners, notify buyers who have been outbid, and perform some upkeep.
First let's look at the code to add a bid.
Function DoBid(ItemID, BidderID, Price, optional Max…… |
|
制作我们自己的Ebay(拍卖系统EN) - The Auction Datab |
Based on the information in the previous section, we have a good understanding of what our database schema should look like. The following tables list our database structure:
tblAuctions tblAuctionItems
AID Unique ID to keep track of records Autonumber IID Unique ID to keep track of records…… |
|
制作我们自己的Ebay(拍卖系统EN) - How do I start? |
Chris Payne
September 11, 2000
Before we go jumping into code and databases, let's take a moment and examine the needs and strategies, as
well as the different types of auctions.
First of all, there are many different types of auctions (which we'll discuss in the next section), so
you'll have …… |
|
制作我们自己的Ebay(拍卖系统EN) - 1 |
Chris Payne
September 11, 2000
Everyone knows Ebay is raking in the big bucks. Peer to peer networking is where it's at, and auctions can
make some serious money. While finding items to sell and attracting people to your auction is up to you,
this article will show you how to build an auction th…… |
|
仿照CHINAASP论坛中TOP10写的部分显示代码 |
hawkfly 发表于2000-11-8 17:43:55 ASP地带以下代码只是刚刚写完,未做优化,具体可参照CHINAASP论坛TOP10修改
<% @ LANGUAGE="VBSCRIPT" %>
<% OPTION EXPLICIT %>
<!--#include file="DataConn.asp"-->
<!--#include file="FuncSet.asp"-->
<% dim rs,sql…… |
|
ASP无组件上传图片的基本方法 |
下面是ASP无组件上传图片的一个例子:
<html>
<head><title>文件上传</title></head>
<body>
<form enctype="multipart/form-data" action="upload.asp" method="post">
请选择要上传的文件: <br>
<input …… |
|
介绍一种效率极高的分类算法 |
2000-09-25· darkman·yesky
在网站建设中,分类算法的应用非常的普遍。在设计一个电子商店时,要涉及到商品分类;在设计发布系统时,要涉及到栏目或者频道分类;在设计软件下载这样的程序时,要涉及到软件的分类;如此等等。可以说,分类是一个很普遍的问题。
我常常面试一些程序员,而且我几乎毫无例外…… |
|
网络精英计数器源程序 |
使用了imagelib组件!
<%
site_id=Request.QueryString("site_id")
if isempty(site_id) then
Response.End
end if
Set Sistema = CreateObject("Scripting.FileSystemObject")
set ILIB = server.createobject("Overpower.ImageLib")
pa…… |
|
使用ASP重启服务器 |
大家知道直接使用ASP是不能够重启服务器的,这时我们需要制作一个组件来实现功能,ASP通过这个组件调用系统API,然
后按照不同的重启和关机方式进行操作!
下面先说COM的制作,在VB中新建一工程,当然是AceiveX dll的!
1)先修改工程属性,在工程属性窗口将工程名称改为system,在类模块窗口将模块名称改为…… |
|
如何用ASP建立图表 |
现在我们针对EXCEL举另外一个例子,大家都询问如何用ASP建立图表的问题,以下就是解决方案
First we set the type of script
首先设定脚本类型
<%@ LANGUAGE="VBSCRIPT" %>
Make the object, and set the object to an Excelsheet
建立Excelsheet对象
Dim MyExcelChart
Set MyExcelChart = CreateObject…… |
|
统计在线人数、每日访问人数和总人数 |
--------------------from 《彩虹细雨》--------------------------------------------------
这个程序难一点,特点在于,因为他是分别的传送每个图片,所以不像CGI产生的图片那样大。而且图片可以重复的利
用所以较率高速度快。只是没有JavaScript就不行了。
程序原代码:
<%
imgurl="http://xxx.xxx.xxx…… |
|
一个查看ASP的JavaScript程序,方便大家学习ASP程序, |
--------------------search by ASPHouse http://aspage.yeah.net/------------------------
--------------------from 《彩虹细雨》--------------------------------------------------
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<…… |
|
简易ASP+注册系统 |
<%@ Page Language="C#" %>
<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.SQL" %>
<html>
<head><title>ASP+注册</title>
<link rel="stylesheet" type="text/css" href="main.css&quo…… |
|
趣味访客计数器设计两则 |
张 蕊 (烟台大学图书馆,264005)
----------------------------------------------------------------------
----------
---- 访客计数器作为网站不可缺少的部分,不仅可以记录网站被访问的次数,而且可
以通过生动有趣的设计来加强网页的趣味性和可观赏性,使访客计数器成为网页上的
一个风景。下面介绍两种轻松设计趣…… |
|
[1][2][3][4].. › » 20条/页 共130条 |