responsewrite("<script>alert('你已报名成功!');</script>")
如果提交完以后,要返回某个页面,可以写成这样
responsewrite("<script>alert('你已报名成功!');windownavigate('indexasp');</script>")
定义一个datatable 。将数据库中取到的值返回值datatable
datatable dt=你取到的数据集
前台页面放入一个DropDownList;
后台这么写 DropDownListdatasource=dt
DropDownListtexfield="Name" (这个name是你datatable的列名)
DropDownListvalueFiled="Number " (这个Number 是你datatable的列名)
DropDownListdatabind();
我自己手动输入的。可能其中个别单词写错了。这个是适用于C#的。你可以自己调试一下就可以了
string name=DropDownListselectvalue;//这是选中下拉框的值
string number=DropDownListselectitemtex;//这是选中下拉框的文本
SQLString = "Insert into tablename(name,age,sex) values('"&Trim(RequestForm("name"))&"','"&Trim(RequestForm("age"))&"','"&Trim(RequestForm("sex")) & "')
ConnExecute SQLString
这是主要处理部分,其它的不影响数据处理的页面设计就随便你怎么做了。
只是看代码,我也看不出实际错在什么地方。不过有一个办法可以让2003调出错误提示:
1、先打开出错的页面;
2、在FTP中打开该页面,并删除所有内容,之后保存(即将该页面的代码全部清空;);
3、再次打开该文件,将原来的内容张贴回去,保存内容;
4、刷新第1步打开的页面,记住,只能是刷新!你就可以看到出错的内容提示了。
我公司也是用2003的,我也是这样的来修改的。
你这样的做法不太好,最好你是用同一个filename来做
<input
name="Field1"
value="1">
<input
name="Field1"
value="2">
这个你处理的时候就好办了
<%
Field1
=request("Field1")
这时候Field1="1,2"
好了,这时候你再把它分解一下就知道用for可以搞定了
Field1Arr=split(Field1,",")
for
i=0
to
ubuntu(Field1Arr)
cur_field1=
Field1Arr[i]
responsewrite
cur_field1&"<br>"
next
这样你应该知道该怎么做了吧~~~有思路了哦
<select
name="select"
onchange=selsubmit();>
~~~~~~~~~~~~~~~~~~~~~
现在外面定义表单sel,然后用这个代码把表单提交给自己,同时判断输入并写入数据库。如果你这个页面有许多表单元素的话,具体情况还要具体分析。
具体代码如下:
——————————————————————————————————
<%
If
request("savesel")=True
Then
'以下为数据库 *** 作,前提是定义过数据连接串了,视自己具体情况而定;
sql="select
xxx
from
xxxx
where
xxxxxx=xxxxxx"
rsopen
sql,conn,3,3
If
Not
rseof
Then
rs("xxxxx")=request("select")
rsupdate
End
If
End
If
%>
<form
name='sel'
method='post'>
<select
name="select"
onchange=selsubmit();>
<option>A</option>
<option>B</option>
<option>C</option>
<option>F</option>
<option>J</option>
</select>
<input
type="hidden"
name="savesel"
value=true>
<form>
——————————————————————————————————
以上就是关于在ASP中提交数据时显示提示对话框代码全部的内容,包括:在ASP中提交数据时显示提示对话框代码、asp.net将web页面的DropDownList中选择的内容提交到数据库。附click代码、ASP表单直接提交到数据库等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)