Form formPreview = new Form();
public Leaf(string name) : base(name) { }
public override void Add(Component c)
{
ConsoleWriteLine("Cannot add to a leaf");
}
public override void Remove(Component c)
{
ConsoleWriteLine("Cannot remove to a leaf");
}
public override void Display(int depth)
{
ConsoleWriteLine(new string('-',depth)+name);
}
}
1表单页aasp
<form action="basp" name="form1" method="post">
<input type="text" value="" name="fo1"/>
<input type="text" value="" name="fo2"/>
<input type="text" value="" name="fo3"/>
<input type="text" value="" name="fo4"/>
<input type="submit" name="sub" value="提交">
</form>
2表单接收页basp
<%
ifo1 = requestform("fo1")
ifo2 = requestform("fo2")
ifo3 = requestform("fo3")
ifo4 = requestform("fo4")
sql = "select from tab"
set rs = servercreateobject("adodbrecordset")
rsopen sql,conn,1,3
rsaddNew
rs("fo1_zd") = ifo1
rs("fo2_zd") = ifo2
rs("fo3_zd") = ifo3
rs("fo4_zd") = ifo4
rsupdate
rsclose
set rs = nothing
%>
set conn = ServerCreateObject("ADODBConnection")
connStr = "Provider = MicrosoftJetOLEDB40;Data Source = " & ServerMapPath("countmdb")
connopen connStr
sql = "update [date] set [num]=" & RequestForm("表单项目名")
connexecute(sql)
connclose()
set conn = nothing
按照你的这种写法 可以试下以下
1、在页面设置一个key保存到session中
<%
sessionsetAttribute("key",UUIDrandomUUID());
%>
2、在表单中加入一个hidden的文本框里面显示那个key的内容
<input type="hidden" value="<%=sessiongetAttribute("key")%>" name="key"/>
3、在表单提交的时候验证你提交的Key和session中的key是否一致,如果一致就说明是重复提交
var key="<%=requestgetParameter("key")%>";//提交的key
var key2="<%=sessiongetAttribute("key")%>";//session中的key
if(key==key2){
//重复提交 *** 作
}else{
正常提交 *** 作
}
不是你所说的那样
我还是一个一个的来回答你的问题嘛
第一 表单就是你在dreamweaver里在设计的状态下的一种样式
第二 所谓的提交就是说把表单的内容提交到你所需要的网页,而不是把他的代码提交到example5asp你懂了
加油啊
你在一个php程序中接收这些值
$name = $_POST['name'];
$qq= $_POST['qq'];
$mobile= $_POST['mobile'];
然后再把三个值插入
$sql = "insert into 表名(name,qq,mobile) values('"$name"','"$qq"','"$mobile"')";
mysql_query($sql);
string ConnectionString = "Data Source=数据源;Database=数据库名称;uid=用户;Pwd=密码";
string sql = "update 数据表 set 字段1= '开',字段2='" + dt + "' (where +限定条件);
SqlConnection conn = new SqlConnection(ConnectionString);
connOpen();
SqlCommand cmd = connCreateCommand();
cmdCommandText = sql;
cmdExecuteNonQuery();
connClose();
以上就是关于服务器接收前台的表单,并把它存入数据库,后台的代码怎么写,用jscript.net全部的内容,包括:服务器接收前台的表单,并把它存入数据库,后台的代码怎么写,用jscript.net、我想将表单通过SUBMIT提交到另一个页面并将表单中的信息保存到数据库,代码应该怎么写啊、求asp表单提交入库代码等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)