请问ASP(vbscript)做的网页要怎么调试?

hi名威 2012-09-14 02:33:51
请问大家平时是怎么测试ASP的?用什么工具?(我暂时用DW cs4)
举个例子,下面是一个网上预订的表单,把变量传到处理页面,然后写入数据库,那我要怎么知道他的值有没有成功传到处理页,怎么知道处理页有没有正确把值写入数据库?
能像jsp那样在eclipse里面采用断点调试吗?或者让程序输出一下什么的,

...全文
152 7 打赏 收藏 转发到动态 举报
写回复
用AI写文章
7 条回复
切换为时间正序
请发表友善的回复…
发表回复
hi名威 2012-09-14
  • 打赏
  • 举报
回复
我现在希望能把门市这一块的内容写入数据库(门市信息是读数据库生成的一个下拉框)
表单页下拉框代码片段如下
                  <td width="36%" align="right" class="member_zi">选择门市:</td>
<td width="64%"><span class="STYLE1">
<%
sql="select Id,Pname from menshit order by id desc"
rs.open sql,conn,1,1
%>
<select name="select2" style="width:120px">
<%do while not rs.eof%>
<option value="<%=rs("pname")%>"><%=rs("pname")%></option>
<%
rs.movenext
loop
rs.close
%>
</select>
<span class="STYLE2">*</span></span></td>


数据库操作代码片段如下
<%
Call OpenData()
Set Rs=Conn.Execute("Select WebName,WebName2,WebName3 From WebConfig")
IF Not Rs.eof Then
WebName=Rs("WebName") '网站名称(英)
WebName2=Rs("WebName2")'网站关键字(英):
WebName3=Rs("WebName3")'网站描述(英)
Else
Response.Write "/"
Response.End()
End IF
Rs.Close

'if request.QueryString("ID")="" Or Not IsNumeric(Request.QueryString("ID")) then
' response.Write "<script LANGUAGE=javascript>alert('参数错误! ');history.go(-1);<'/script>"
' response.End
'else
' ID=trim(request.QueryString("ID"))
' Sql="Select ID from sbe_job where ID="&ID&" and Show=true "
' rs.open Sql,conn,1,3
' if rs.eof and rs.bof then
' response.Write "<script LANGUAGE=javascript>alert('参数错误! ');history.go(-1);<'/script>"
' response.End
' end if
' rs.close
'end if
' job=trim(request.QueryString("job"))
' Sql="select ID,Job,Num,AddDate,Show,Contact,Tel,leibie,Department,address,EffectTime,sex,click from sbe_job where id="&id
' Rs.open Sql,conn,1,1
shop=trim(request("select2"))
lytheme=trim(request("lytheme"))
lyname=trim(request("lyname"))
lytel=trim(request("lytel"))
phone=trim(request("phone"))
leibie=trim(request("leibie"))
months=trim(request("months"))
days=trim(request("days"))
hours=trim(request("hours"))
feng=trim(request("feng"))
years=year(now())
lysex2=years&"-"&months&"-"&days
bb=datediff("d",now(),lysex2)
if bb>7then
response.Write"<script>alert('您的预约时间过长,只接受7日内预约,谢谢!');history.go(-1);</script>"
response.End()
end if
if bb<0 then
response.Write"<script>alert('您的预约时间不正确,只接受7日内预约,谢谢!');history.go(-1);</script>"
response.End()
end if
lysex=months&"月"&days&"日"&hours&"点"&feng&"分"
' if lytheme="" then
' response.Write"<script>alert('请填写会员卡号!');history.go(-1);<'/script>"
' response.End()
' end if
if lytheme="" then
response.Write"<script>alert('请填写您的姓名!');history.go(-1);</script>"
response.End()
end if
if phone="" then
response.Write"<script>alert('请填写您的手机号码!');history.go(-1);</script>"
response.End()
end if
if lytel<>"" and (len(lytel)=18 or len(lytel)=15) then
else
response.Write"<script>alert('身份证号不正确!');history.go(-1);</script>"
response.End()
end if
if leibie="" then
response.Write"<script>alert('请填写您团体具体人数!');history.go(-1);</script>"
response.End()
end if
' if rs.eof then
' response.Write"<script>alert('不存在的会员卡号!');history.go(-1);<'/script>"
' response.End()
' end if

sql="insert into [box](lytheme,lyname,lytel,phone,leibie,lysex,shop)values('"&lytheme&"','"&lyname&"','"&lytel&"','"&phone&"','"&leibie&"','"&lysex&"','"&select2&"')"

conn.execute sql

%>

我的问题是,我给数据库添加了一个新字段“shop”,然后从表单的下拉框获取门市信息变量”select2“ 可是数据库写入为空,请问一般是哪里出问题了
hi名威 2012-09-14
  • 打赏
  • 举报
回复
我现在希望能把门市这一块的内容写入数据库(门市信息是读数据库生成的一个下拉框)
表单页下拉框代码片段如下
                  <td width="36%" align="right" class="member_zi">选择门市:</td>
<td width="64%"><span class="STYLE1">
<%
sql="select Id,Pname from menshit order by id desc"
rs.open sql,conn,1,1
%>
<select name="select2" style="width:120px">
<%do while not rs.eof%>
<option value="<%=rs("pname")%>"><%=rs("pname")%></option>
<%
rs.movenext
loop
rs.close
%>
</select>
<span class="STYLE2">*</span></span></td>


数据库操作代码片段如下
<%
Call OpenData()
Set Rs=Conn.Execute("Select WebName,WebName2,WebName3 From WebConfig")
IF Not Rs.eof Then
WebName=Rs("WebName") '网站名称(英)
WebName2=Rs("WebName2")'网站关键字(英):
WebName3=Rs("WebName3")'网站描述(英)
Else
Response.Write "/"
Response.End()
End IF
Rs.Close

'if request.QueryString("ID")="" Or Not IsNumeric(Request.QueryString("ID")) then
' response.Write "<script LANGUAGE=javascript>alert('参数错误! ');history.go(-1);<'/script>"
' response.End
'else
' ID=trim(request.QueryString("ID"))
' Sql="Select ID from sbe_job where ID="&ID&" and Show=true "
' rs.open Sql,conn,1,3
' if rs.eof and rs.bof then
' response.Write "<script LANGUAGE=javascript>alert('参数错误! ');history.go(-1);<'/script>"
' response.End
' end if
' rs.close
'end if
' job=trim(request.QueryString("job"))
' Sql="select ID,Job,Num,AddDate,Show,Contact,Tel,leibie,Department,address,EffectTime,sex,click from sbe_job where id="&id
' Rs.open Sql,conn,1,1
shop=trim(request("select2"))
lytheme=trim(request("lytheme"))
lyname=trim(request("lyname"))
lytel=trim(request("lytel"))
phone=trim(request("phone"))
leibie=trim(request("leibie"))
months=trim(request("months"))
days=trim(request("days"))
hours=trim(request("hours"))
feng=trim(request("feng"))
years=year(now())
lysex2=years&"-"&months&"-"&days
bb=datediff("d",now(),lysex2)
if bb>7then
response.Write"<script>alert('您的预约时间过长,只接受7日内预约,谢谢!');history.go(-1);</script>"
response.End()
end if
if bb<0 then
response.Write"<script>alert('您的预约时间不正确,只接受7日内预约,谢谢!');history.go(-1);</script>"
response.End()
end if
lysex=months&"月"&days&"日"&hours&"点"&feng&"分"
' if lytheme="" then
' response.Write"<script>alert('请填写会员卡号!');history.go(-1);<'/script>"
' response.End()
' end if
if lytheme="" then
response.Write"<script>alert('请填写您的姓名!');history.go(-1);</script>"
response.End()
end if
if phone="" then
response.Write"<script>alert('请填写您的手机号码!');history.go(-1);</script>"
response.End()
end if
if lytel<>"" and (len(lytel)=18 or len(lytel)=15) then
else
response.Write"<script>alert('身份证号不正确!');history.go(-1);</script>"
response.End()
end if
if leibie="" then
response.Write"<script>alert('请填写您团体具体人数!');history.go(-1);</script>"
response.End()
end if
' if rs.eof then
' response.Write"<script>alert('不存在的会员卡号!');history.go(-1);<'/script>"
' response.End()
' end if

sql="insert into [box](lytheme,lyname,lytel,phone,leibie,lysex,shop)values('"&lytheme&"','"&lyname&"','"&lytel&"','"&phone&"','"&leibie&"','"&lysex&"','"&select2&"')"

conn.execute sql

%>

我的问题是,我给数据库添加了一个新字段“shop”,然后从表单的下拉框获取门市信息变量”select2“ 可是数据库写入为空,请问一般是哪里出问题了
hi名威 2012-09-14
  • 打赏
  • 举报
回复
处理页代码
<!--#include file="inc/conn.asp"-->
<!--#include file="inc/lib.asp"-->
<!--#include file="inc/Check_Sql.asp"-->
<%
Call OpenData()
Set Rs=Conn.Execute("Select WebName,WebName2,WebName3 From WebConfig")
IF Not Rs.eof Then
WebName=Rs("WebName") '网站名称(英)
WebName2=Rs("WebName2")'网站关键字(英):
WebName3=Rs("WebName3")'网站描述(英)
Else
Response.Write "/"
Response.End()
End IF
Rs.Close

'if request.QueryString("ID")="" Or Not IsNumeric(Request.QueryString("ID")) then
' response.Write "<script LANGUAGE=javascript>alert('参数错误! ');history.go(-1);<'/script>"
' response.End
'else
' ID=trim(request.QueryString("ID"))
' Sql="Select ID from sbe_job where ID="&ID&" and Show=true "
' rs.open Sql,conn,1,3
' if rs.eof and rs.bof then
' response.Write "<script LANGUAGE=javascript>alert('参数错误! ');history.go(-1);<'/script>"
' response.End
' end if
' rs.close
'end if
' job=trim(request.QueryString("job"))
' Sql="select ID,Job,Num,AddDate,Show,Contact,Tel,leibie,Department,address,EffectTime,sex,click from sbe_job where id="&id
' Rs.open Sql,conn,1,1
shop=trim(request("select2"))
lytheme=trim(request("lytheme"))
lyname=trim(request("lyname"))
lytel=trim(request("lytel"))
phone=trim(request("phone"))
leibie=trim(request("leibie"))
months=trim(request("months"))
days=trim(request("days"))
hours=trim(request("hours"))
feng=trim(request("feng"))
years=year(now())
lysex2=years&"-"&months&"-"&days
bb=datediff("d",now(),lysex2)
if bb>7then
response.Write"<script>alert('您的预约时间过长,只接受7日内预约,谢谢!');history.go(-1);</script>"
response.End()
end if
if bb<0 then
response.Write"<script>alert('您的预约时间不正确,只接受7日内预约,谢谢!');history.go(-1);</script>"
response.End()
end if
lysex=months&"月"&days&"日"&hours&"点"&feng&"分"
' if lytheme="" then
' response.Write"<script>alert('请填写会员卡号!');history.go(-1);<'/script>"
' response.End()
' end if
if lytheme="" then
response.Write"<script>alert('请填写您的姓名!');history.go(-1);</script>"
response.End()
end if
if phone="" then
response.Write"<script>alert('请填写您的手机号码!');history.go(-1);</script>"
response.End()
end if
if lytel<>"" and (len(lytel)=18 or len(lytel)=15) then
else
response.Write"<script>alert('身份证号不正确!');history.go(-1);</script>"
response.End()
end if
if leibie="" then
response.Write"<script>alert('请填写您团体具体人数!');history.go(-1);</script>"
response.End()
end if
' if rs.eof then
' response.Write"<script>alert('不存在的会员卡号!');history.go(-1);<'/script>"
' response.End()
' end if

sql="insert into [box](lytheme,lyname,lytel,phone,leibie,lysex,shop)values('"&lytheme&"','"&lyname&"','"&lytel&"','"&phone&"','"&leibie&"','"&lysex&"','"&select2&"')"

conn.execute sql

%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title><%=WebName%></title>
<meta name="keywords" content="<%=WebName2%>" />
<meta name="description" content="<%=WebName3%>" />
<link href="inc/css.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
body {
background-image: url(images/bg.gif);
}
.STYLE1 {color: #FFFFFF}
-->
</style></head>

<body>
<table width="1003" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><!--#include file="top_menu.asp"--></td>
</tr>
<tr>
<td><table width="100%" cellspacing="0" cellpadding="0">
<tr>
<td width="6%"> </td>
<td width="21%" valign="top"><!--#include file="left.asp"--></td>
<td width="68%" valign="top">
<table width="100%" cellspacing="0" cellpadding="0">
<tr>
<td><img src="images/online_03.jpg" width="683" height="36" alt=""></td>
</tr>
<tr>
<td height="620" valign="top" background="images/about_05.jpg" style="padding:15px 35px 0px 35px"><table width="100%" cellspacing="0" cellpadding="0">
<tr>
<td class="STYLE1" height="25">我们已经接受您的预约,谢谢!</td>
</tr>
</table></td>
</tr>
</table></td>
<td width="5%"> </td>
</tr>
</table></td>
</tr>
<tr>
<td style="padding:10px 53px 0px 58px"><!--#include file="link.asp"--></td>
</tr>
<tr>
<td><img src="images/index_25.jpg" width="1003" height="13" alt=""></td>
</tr>
<tr>
<td><!--#include file="foot.asp"--></td>
</tr>
</table>
</body>
</html>

Rotel-刘志东 2012-09-14
  • 打赏
  • 举报
回复
不能像eclipse那样集成化工具断点调试的。只能用IIS并结合response.write。
如果不知道那一段程序有问题那就输出看是否正确,也就是response.write
hi名威 2012-09-14
  • 打赏
  • 举报
回复
表单页代码

<!--#include file="inc/conn.asp"-->
<!--#include file="inc/lib.asp"-->
<!--#include file="inc/Check_Sql.asp"-->
<%
Call OpenData()
Set Rs=Conn.Execute("Select WebName,WebName2,WebName3 From WebConfig")
IF Not Rs.eof Then
WebName=Rs("WebName") '网站名称(英)
WebName2=Rs("WebName2")'网站关键字(英):
WebName3=Rs("WebName3")'网站描述(英)
Else
Response.Write "/"
Response.End()
End IF
Rs.Close


%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title><%=WebName%></title>
<meta name="keywords" content="<%=WebName2%>" />
<meta name="description" content="<%=WebName3%>" /><link href="inc/css.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
body {
background-image: url(images/bg.gif);
}
.STYLE1 {color: #FFFFFF}
.STYLE2 {color: #FF0000}
-->
</style></head>

<body>
<table width="1003" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><!--#include file="top_menu.asp"--></td>
</tr>
<tr>
<td><table width="100%" cellspacing="0" cellpadding="0">
<tr>
<td width="6%"> </td>
<td width="21%" valign="top"><!--#include file="left.asp"--></td>
<td width="68%" valign="top"><table width="100%" cellspacing="0" cellpadding="0">
<tr>
<td><img src="images/online_03.jpg" width="683" height="36" alt=""></td>
</tr>
<tr>
<td height="620" valign="top" background="images/about_05.jpg" style="padding:59px 25px 0px 25px"><table width="100%" cellspacing="0" cellpadding="0">
<tr>
<td align="center" style="padding-bottom:70px"><img src="images/online_07.jpg" width="449" height="69" alt=""></td>
</tr>
</table>
<form action="onlinesave.asp?act=save" method="post" name="form1">
<table width="86%" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="36%" align="right" class="member_zi">选择门市:</td>
<td width="64%"><span class="STYLE1">
<%
sql="select Id,Pname from menshit order by id desc"
rs.open sql,conn,1,1
%>
<select name="select2" style="width:120px">
<%do while not rs.eof%>
<option value="<%=rs("pname")%>"><%=rs("pname")%></option>
<%
rs.movenext
loop
rs.close
%>
</select>
<span class="STYLE2">*</span></span></td>
</tr>
<tr>
<td align="right" class="member_zi">会员卡号:</td>
<td><span class="member">
<input type="text" name="lytheme" style="width:170px; height:18px">
<span class="STYLE2">*</span></span></td>
</tr>
<tr>
<td align="right" class="member_zi">您的姓名:</td>
<td><span class="member">
<input type="text" name="lyname" style="width:170px; height:18px">
<span class="STYLE2">*</span></span></td>
</tr>
<tr>
<td align="right" class="member_zi">身份证号码:</td>
<td><span class="member">
<input type="text" name="lytel" style="width:170px; height:18px">
<span class="STYLE2">*</span></span></td>
</tr>

<tr>
<td align="right" class="member_zi">手机号:</td>
<td><span class="member">
<input type="text" name="phone" style="width:170px; height:18px">
<span class="STYLE2">*</span></span></td>
</tr>
<tr>
<td align="right" class="member_zi">人数:</td>
<td><span class="member">
<input type="text" name="leibie" style="width:170px; height:18px">
<span class="STYLE2">*</span></span></td>
</tr>
<tr>
<td align="right" class="member_zi">具体时间:</td>
<td><span class="member">
<select name="months">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
</select>
月 
<select name="days">
<%for i=1 to 31%>
<option value="<%=i%>"><%=i%></option>
<%next%>
</select>
日 
<select name="hours">
<%for i=1 to 24%>
<option value="<%=i%>"><%=i%></option>
<%next%>
</select>
点 
<select name="feng">
<%for i=0 to 50 step 10%>
<option value="<%=i%>"><%=i%></option>
<%next%>
</select>
分  <span class="STYLE2">*</span></span></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td><input name="image2" type="image" src="images/online_11.jpg" alt="" width="53" height="17">
  <a href="online.asp"><img src="images/online_13.jpg" width="53" height="17" alt="" border="0"></a></td>
</tr>
</table>
</form></td>
</tr>
</table></td>
<td width="5%"> </td>
</tr>
</table></td>
</tr>
<tr>
<td style="padding:10px 53px 0px 58px"><!--#include file="link.asp"--></td>
</tr>
<tr>
<td><img src="images/index_25.jpg" width="1003" height="13" alt=""></td>
</tr>
<tr>
<td><!--#include file="foot.asp"--></td>
</tr>
</table>
</body>
</html>


hi名威 2012-09-14
  • 打赏
  • 举报
回复
[Quote=引用 1 楼 的回复:]

iis+response.write
[/Quote]
额,能具体一点吗?
Go 旅城通票 2012-09-14
  • 打赏
  • 举报
回复
iis+response.write
ASP 第1章 ASP入门要点 7.如何创建一个ASP文件并浏览其执行结果 第2章 ASP.NET运行模型 12.如何定义变量和判定变量类型 13.什么是变量的作用域 14.如何强制要求显式声明变量 15.如何保留或消除过程调用对变量的影响 16.如何创建和调整动态数组 18.如何计算中英文混合字符串的长度 19.如何判断字符串是否以指定字符串开头或结尾 20.如何判断字符是否是英文字符 21.如何检测字符串出现的次数 22.如何过滤字符串中的HTML代码 23.如何截取字符串 24.如何实现字符串和数组的转换 25.如何实现字符大小写的转换 26.如何将每个单词的首个字母改成大写 27.如何将汉字转换为拼音 28.如何分位显示位数较长的数字 29.如何将数字转换为大写的中文字符 30.如何判断奇数和偶数 32.如何生成一个随机数 33.如何实现VBScript和JavaScript的数据共享(JavaScript to VBScript) 33.如何实现VBScript和JavaScript的数据共享(VBScript to JavaScript) 33.如何实现VBScript和JavaScript的数据共享(Server to Client) 34.如何创建VBScript编码模板 第3章 ASP对象 35.如何创建和获取Application级的对象及变量 36.如何创建和获取Session级的对象及变量 38.如何利用Session防止用户重复投票 40.如何在Session对象失效后重新设置Session对象 41.如何创建、读写和删除Cookie 43.如何遍历Cookies集合 44.如何判断客户端的Cookie是否处于开启状态 45.如何使用Cookie记录用户访问信息 46.如何用Cookie实现仅弹出一次同样的窗口 48.如何清除页面缓存 49.如何获取用户浏览器信息 50.如何获取用户真实的IP地址 52.如何判断网站的虚拟物理路径 53.如何解决URL含有特殊字符引发的错误 第4章 ASP组件 55.如何使用Browser Capabilities组件获取浏览器信息 56.如何使用Ad Rotator组件实现页面导航 57.如何使用Content Linking组件 58.如何使用File Access组件 59.如何使用Counters组件实现网站访问人数统计 60.如何使用ASPPing组件 61.如何使用ASPHttp组件 62.如何用Visual Basic编写ActiveX DLL及其使用 63.如何远程注册DLL文件 64.如何把ASP代码编写成DLL文件 65.如何在ASP中引用类 第5章 ADO数据库 67.如何创建一个断开连接的数据库访问页 68.如何获取数据库表名、字段名以及执行相应操作(获取数据库名) 68.如何获取数据库表名、字段名以及执行相应操作(获取数据库表名) 68.如何获取数据库表名、字段名以及执行相应操作(执行操作) 69.如何在客户端向服务器端数据库批量添加数据 73.如何对欲删除的记录确认后再删除 74.如何用in关键字实现数据的批量删除 75.如何只读取数据库的前几条记录且如何实现排行榜 76.如何实现在多个表中查询数据 77.如何用ASP实现通用条件查询模块 78.如何在ASP整合SQL语句 79.如何实现不刷新页面筛选数据库中的数据 80.如何实现公共的数据分页模块 82.如何在ADO中调用SQL函数 83.如何调用SQL Server存储过程 86.如何用ASP备份和恢复SQL Server数据库 88.如何将图像存入到数据库中 89.如何从数据库中调用显示图像 90.如何用ASP读取Excel文件 91.怎样将数据从Excel导入到SQL Server中 92.怎样将数据从Access导入到SQL Server中 94.如何对Access数据库进行压缩 96.如何使用ASP实现Web数据统计和报表 97.如何在查询结果中搜索 第6章 数据验证 101.如何在ASP中使用正则表达式 102.如何验证字符串为空(示例一) 102.如何验证字符串为空(示例二) 102.如何验证字符串为空(示例三) 102.如何验证字符串为空 (示例四) 103.如何验证字符串包含有效字符 106.如何验证整数或长整数 108.如何验证电子邮件地址 第7章 文件处理 113.读取驱动器信息 113.浏览文件夹下所有文件信息 113.文件夹的复制 113.文件夹的获取 113.文件夹的移动 114.遍历指定目录下的文件 114.遍历目录及目录下的文件 115.使用起泡法按照时间排列文件 117.读取INI文件 118.读取注册表的信息 119.获知文件被改动的情况 120.用ASP实现远程批量文件改名 121.实现无组件文件上传 122.利用组件实现复杂上传功能 123.利用Stream读取显示文件 123.利用Stream上传文件 124.计算下载一个文件需要多长时间 第8章 表单与页面显示 127.如何处理单个网页中多个表单的提交 128.如何防止表单被多次提交 129.如何防止表单在网站外被提交 130.如何解决表单发送数据小于100KB的问题 131.如何在表单中动态添加文本框 132.如何解决下拉列表出现选项重复的问题 133.如何实现在下拉列表中输入文字 134.如何实现级联下拉列表 135.如何根据用户的分辨率调整窗口 136.如何弹出自定义窗口(示例一) 136.如何弹出自定义窗口(示例二) 136.如何弹出自定义窗口(示例三) 137.如何定时自动关闭弹出的窗口 138.如何解决用showModelessDialog弹出新窗口的问题 140.如何强制刷新网页 141.如何吸取网页上的颜色 142.如何将RGB值转换成十六进制值 第9章 使用XML 143.如何创建和显示一个XML文档(示例一) 143.如何创建和显示一个XML文档(示例二) 143.如何创建和显示一个XML文档(示例三) 144.如何在ASP环境下应用XML 145.如何通过XMLDom在服务器端操作XML文件(示例一) 145.如何通过XMLDom在服务器端操作XML文件(示例二) 146.如何使用XML实现不刷新页面查询数据库 147.如何把HTML表单提交的数据转化成XML文件(第一步) 147.如何把HTML表单提交的数据转化成XML文件(第二步) 148.如何在ASP中使用XML实现网页"本地化" 149.如何用XML制作留言本 第10章 专题应用 150.如何统计在线人数 152.如何统计用户在站点停留的时间 153.如何从服务器获得客户端时间 154.如何测试网站速度 156.如何制作防刷新计数器 157.如何实现ASP缓存技术 158.如何在ASP中实现Ping 159.如何打印Iframe中的内容 160.如何用ASP实现网络打印 161.如何用组件实现本地特定打印 162.如何在ASP程序中打印Excel报表 163.如何在ASP中调用Java类 164.如何在线压缩和解压缩WinRAR文件 第11章 综合开发 166.如何实现聊天室功能 167.如何实现网上投票调查 168.如何实现购物车功能 169.如何实现在线影音播放 170.如如何实现论坛功能 171.如何实现智能搜索 172.如何利用索引服务创建站内搜索引擎 173.如何实现电子邮件的自动发送 174.如何使用ASP和Jmail进行邮件群发 第12章 错误与调试 177.如何个性化显示错误信息 178.如何同时显示数据库连接错误和页面错误 第13章 性能优化 第14章 安全加密

28,391

社区成员

发帖
与我相关
我的任务
社区描述
ASP即Active Server Pages,是Microsoft公司开发的服务器端脚本环境。
社区管理员
  • ASP
  • 无·法
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧