asp.net不使用runat=server,点击提交按钮,把所有文本框的内容写入数据库,下面的代码该怎么改? 50
<htmlxmlns="http://www.w3.org/1999/xhtml"><head><metahttp-equiv="Content-Type"content...
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
</head>
<body>
<form id="form1">
<div>
<table id="tb1">
<tr>
<td><input id="text1" type="text" /></td>
<td><input id="text2" type="text" /></td>
</tr>
<tr>
<td><input id="text3" type="text" /></td>
<td><input id="text4" type="text" /></td>
</tr>
</table>
<input id="btn1" type="submit" value="提交" />
</div>
</form>
</body>
</html> 展开
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
</head>
<body>
<form id="form1">
<div>
<table id="tb1">
<tr>
<td><input id="text1" type="text" /></td>
<td><input id="text2" type="text" /></td>
</tr>
<tr>
<td><input id="text3" type="text" /></td>
<td><input id="text4" type="text" /></td>
</tr>
</table>
<input id="btn1" type="submit" value="提交" />
</div>
</form>
</body>
</html> 展开
2015-05-30 · 知道合伙人互联网行家
关注
展开全部
public void button_click(object sender,e){
SqlConnection connection=new Sqlconneciont("数据库连接字符串");
connection.Open();
SqlCommand command = connection.CreateCommand();
command.CommandText = "update 表 set 列="+this.textbox.text;
int i = command.ExecuteNonQuery();
connection.Close();
}
这是最简单也是最基本的 看看吧
SqlConnection connection=new Sqlconneciont("数据库连接字符串");
connection.Open();
SqlCommand command = connection.CreateCommand();
command.CommandText = "update 表 set 列="+this.textbox.text;
int i = command.ExecuteNonQuery();
connection.Close();
}
这是最简单也是最基本的 看看吧
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<input id="btn1" type="submit" value="提交" />变成
<input id="btn1" type="submit" value="提交" OnClick="btn1_Click" />
后台
protected void btn1_Click(object sender, EventArgs e)
{
string a = this.Text1.value;
string b = this.Text2.value;
string c = this.Text3.value;
string d = this.Text4.value;
}
这样获取文本框内容,然后就添加。。。。很简单的吧
<input id="btn1" type="submit" value="提交" OnClick="btn1_Click" />
后台
protected void btn1_Click(object sender, EventArgs e)
{
string a = this.Text1.value;
string b = this.Text2.value;
string c = this.Text3.value;
string d = this.Text4.value;
}
这样获取文本框内容,然后就添加。。。。很简单的吧
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询