用asp.net做物流网站, 如何将网页中输入的数据提交给数据库并在页面中显示(导入成功有提示) 5

比如,在页面(文本框)中输入商品的价格数量,按个“输入”按钮,则这些数据会导入数据库;或者页面显示商品的信息,按“删除“按钮则会从数据库中删除这些数据数据库为SQL200... 比如,在页面(文本框)中输入商品的价格数量,按个“输入”按钮,则这些数据会导入数据库;或者页面显示商品的信息,按“删除“按钮则会从数据库中删除这些数据
数据库为SQL 2005,开发工具为Microsoft Visual Studio 2008
展开
 我来答
c_yunyun
2012-03-23 · TA获得超过121个赞
知道答主
回答量:36
采纳率:0%
帮助的人:41.9万
展开全部
我介绍的是ADO.net的用法。。这里有个很详细的范例,你仔细研究下。。每一句代码都有注释的。
//ADO.net需要引入的命名空间
using System.Data.SqlClient;
using System.Data;
//ConfigurationManager类需要引入以下命名空间
using System.Configuration;

public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

}

//响应"查询学生表"按钮-演示利用SqlDataReader类遍历表记录
protected void btn1_Click(object sender, EventArgs e)
{
//获取数据库连接字符串(ConfigurationManager类需要引入System.Configuration的命名空间)
string sqlConnectStr = ConfigurationManager.ConnectionStrings["SchoolConnectionString"].ConnectionString;

//创建数据库连接对象(SqlConnection)
SqlConnection myConnection = new SqlConnection(sqlConnectStr);

//创建数据库命令对象(SqlCommand)
SqlCommand myCommand = new SqlCommand("select * from Student", myConnection);

//打开数据库连接
myConnection.Open();

//创建数据读取对象(注意:ExecuteReader()方法获取的数据只读,而且只能向后移动记录)
SqlDataReader myReader = myCommand.ExecuteReader();

//逐一读取记录,显示到表格中
literalResult.Text = "<table border=1><tr> <td>学号</td><td>姓名</td><td>性别</td>";
while (myReader.Read())
literalResult.Text = literalResult.Text + "<tr><td>" + myReader["StudentID"].ToString() + "</td><td>" + myReader[1].ToString() + "</td><td>" + myReader.GetString(2) + "</td>";
literalResult.Text = literalResult.Text + "</table>";

//关闭数据读取对象
myReader.Close();

//关闭数据库连接对象
myConnection.Close();
}

//响应"查询学生数量"按钮-演示"SqlCommand.ExecuteScalar()"方法
protected void btn2_Click(object sender, EventArgs e)
{
//创建数据库连接对象(SqlConnection)
SqlConnection myConnection = new SqlConnection("server=(local);database=school;uid=sa;pwd=123;");

//创建数据库命令对象(SqlCommand)
SqlCommand myCommand = new SqlCommand("select count(*) from student",myConnection);

//打开数据库连接
myConnection.Open();

//获取查询结果数据(注意: SqlCommand.ExecuteScalar()方法只获取返回结果中的第一行、第一列值)
int StudentCount = Convert.ToInt32(myCommand.ExecuteScalar());
literalResult.Text = "学生数量为" + StudentCount.ToString();

//关闭数据库连接对象
myConnection.Close();
}

//响应"删除第一个学生"按钮-演示"SqlCommand.ExecuteNonQuery()"方法
protected void btn3_Click(object sender, EventArgs e)
{
//获取数据库连接字符串(ConfigurationManager类需要引入System.Configuration的命名空间)
string sqlConnectStr = "server=(local);database=school;uid=sa;pwd=123;";

//创建数据库连接对象(SqlConnection)
SqlConnection myConnection = new SqlConnection(sqlConnectStr);

//创建数据库命令对象(SqlCommand)
SqlCommand myCommand = new SqlCommand("delete from student where StudentID=(select min(StudentID) from student)", myConnection);

//打开数据库连接
myConnection.Open();

//获取查询结果数据(注意: SqlCommand.ExecuteNonQuery()方法适合于Insert、Delete、Update等操作,返回操作影响的行数)
int Result = Convert.ToInt32(myCommand.ExecuteNonQuery());
if(Result==1)
literalResult.Text = "删除了1个学生记录!";
else
literalResult.Text = "删除操作失败!";

//关闭数据库连接对象
myConnection.Close();
}

//响应"查询1号学生"按钮-演示如何调用"存储过程"
protected void btn4_Click(object sender, EventArgs e)
{
//创建数据库连接对象(SqlConnection)
SqlConnection myConnection = new SqlConnection("server=(local);database=school;uid=sa;pwd=123;");

//创建数据库命令对象(存储过程类型)
SqlCommand myCommand = new SqlCommand("SearchStudentByID", myConnection);
myCommand.CommandType = System.Data.CommandType.StoredProcedure;

//为存储过程添加参数(定义:Create Procedure SearchStudentByID @StudentID [int] AS Select * From Student Where StudentID=@StudentID)
myCommand.Parameters.AddWithValue("@StudentID", 1);

//打开数据库连接
myConnection.Open();

//创建数据读取对象(注意: ExecuteReader()方法获取的数据只读,而且只能向后移动记录)
SqlDataReader myReader = myCommand.ExecuteReader();

//逐一读取记录,显示到表格中
literalResult.Text = "<table border=1><tr> <td>学号</td><td>姓名</td><td>性别</td>";
while (myReader.Read())
literalResult.Text = literalResult.Text + "<tr><td>" + myReader["StudentID"].ToString() + "</td><td>" + myReader[1].ToString() + "</td><td>" + myReader.GetString(2) + "</td>";
literalResult.Text = literalResult.Text + "</table>";

//关闭数据读取对象
myReader.Close();

//关闭数据库连接对象
myConnection.Close();
}

//响应"查询学生表"按钮-演示利用myDataSet类遍历表记录
protected void btn5_Click(object sender, EventArgs e)
{
//获取数据库连接字符串(ConfigurationManager类需要引入System.Configuration的命名空间)
string sqlConnectStr = ConfigurationManager.ConnectionStrings["SchoolConnectionString"].ConnectionString;

//创建数据库连接对象(SqlConnection)
SqlConnection myConnection = new SqlConnection(sqlConnectStr);

//创建数据库命令对象(SqlCommand)
SqlCommand myCommand = new SqlCommand("select * from student", myConnection);

//打开数据库连接
myConnection.Open();

//创建DataAdapter对象
SqlDataAdapter myDataAdapter = new SqlDataAdapter(myCommand);

//创建DataSet对象,DataSetName="student"
DataSet myDataSet = new DataSet("student");

//把"student"表记录填充到myDataSet中
myDataAdapter.Fill(myDataSet, "student");

//遍历表记录,显示到表格中
literalResult.Text = "<table border=1><tr> <td>学号</td><td>姓名</td><td>性别</td>";
int rowCount = myDataSet.Tables["student"].Rows.Count;
for(int i=0;i<=rowCount-1;i++)
literalResult.Text = literalResult.Text + "<tr><td>" + myDataSet.Tables["student"].Rows[i]["StudentID"].ToString() + "</td><td>" + myDataSet.Tables["student"].Rows[i]["Name"].ToString() + "</td><td>" + myDataSet.Tables["student"].Rows[i]["Sex"].ToString() + "</td>";
literalResult.Text = literalResult.Text + "</table>";

//另外一种遍历表记录的方法
//literalResult.Text = "<table border=1><tr> <td>学号</td><td>姓名</td><td>性别</td>";
//foreach (DataRow dr in myDataSet.Tables["student"].Rows)
// literalResult.Text = literalResult.Text + "<tr><td>" + dr["StudentID"].ToString() + "</td><td>" + dr["Name"].ToString() + "</td><td>" + dr["Sex"].ToString() + "</td>";
//literalResult.Text = literalResult.Text + "</table>";

//关闭数据库连接对象
myConnection.Close();
}
}
丶没好名字
2012-03-23 · TA获得超过143个赞
知道小有建树答主
回答量:374
采纳率:0%
帮助的人:228万
展开全部
购物车不会涉及数据库
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2012-03-23
展开全部
sql的增删改查不是最基本的吗?
追问
不是在数据库中做修改,是在网页中操作,就像淘宝购物车一样,点“删除”时会将收藏的物品删除
追答
还是不明白,如果是购物车功能的话一般session来写的或者cookie,而不是像你说的每次添加或者删除都访问数据库。你可以百度下一搜一大把。
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式