.写一个ASP程序,录入学生成绩。数据库名student.mdb 中有一个学生成绩表 CJ(字段:学号 text,)怎么写

姓名text,成绩int)(请用recordset对象的方法)怎么写,,求求咯... 姓名 text,成绩 int)(请用recordset对象的方法)怎么写,,求求咯 展开
 我来答
xichengfeihu
2011-03-06 · TA获得超过156个赞
知道小有建树答主
回答量:115
采纳率:0%
帮助的人:118万
展开全部
<%
On Error Resume Next
connstring="DRIVER={Microsoft Access Driver (*.mdb)};"& "DBQ=" & server.mappath("student.mdb")
Set Conn=Server.CreateObject("ADODB.Connection")
Conn.Open connstring
sql="insert into CJ ( 姓名,成绩) values('XM','CJ') "
Conn.Execute(sql)
Conn.close
%>
追问
怎么没有,,用recordset对象的方法,,进行写呢??求你咯
追答
recordset 这个是存放查询结果的,
你题目说的是录入成绩,就用不着结果集啦
手机用户51113
2011-03-07 · TA获得超过204个赞
知道答主
回答量:220
采纳率:0%
帮助的人:198万
展开全部
到你。

<form id="form1" name="form1" method="post" action="?action=submit">
Please Input Your Words Here:
<input name="strings" type="text" id="strings" />
<input type="submit" name="Submit" value="GO" />
<input name="action" type="hidden" id="action" value="submit" />
</form>
<%
if request.Form("action")="submit" then
a=request.Form("strings")
n=len(a)
dim temp_num,temp_words,temp_space,temp_other
temp_num=0
temp_words=0
temp_space=0
temp_other=0

for i= 1 to n
word=asc(mid(a,i,1))
if word=32 then'空格
temp_space=temp_space+1
elseif word>=65 and word<=122 then '字母
temp_words=temp_words+1
elseif word>=48 and word<=57 then
temp_num=temp_num+1
else
temp_other=temp_other+1
end if
next
response.write "你输入的字符串:<span style='color:red;background-color: #CCC;'>"&a&"</span><br>"
response.write "空格数:"&temp_space&"<br>"
response.write "数字:"&temp_num&"<br>"
response.write "字母:"&temp_words&"<br>"
response.write "其他:"&temp_other&"<br>"
end if
%>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式