asp.net中如何将文本框中输入的数据与数据库中的数据进行运算?

2024-12-19 09:44:35
推荐回答(3个)
回答1:

1.get data
public DataTable Query(String where)
{
String sql = String.Format("select * from mytable Where {0}", where.ToLower().Replace("update", "").Replace("delete", "").Replace("insert", "").Replace(";", "").Replace("--", "").Replace("exec", ""));
try
{
SqlDataAdapter da = new SqlDataAdapter(sql, new SqlConnection(this._ConnectionString));
DataTable dt = new DataTable();
da.Fill(dt);
return dt;
}
catch
{
return null;
}
}
2.操作取得的数据(不知道楼主说的运算是怎么个运算法)
try{
int para1=int.parse(this.TextBox1.Text.Trim());
int para2=int.parse(dt.Rows[0][0].ToString())
int result=para1 * para2;//是楼主想要的?
}
catch{}

回答2:

这个简单啊,连接到数据库,然后在Asp.net中用用一个查询语句来查询你要运行的数据啊,在用一个参数来接收,文本框的就好办了,直接得到它的Text值就行了。

回答3:

这个我也知道,就是不知道具体的代码怎么写才对,自己写了说输入的字符串格式不对? 应该是数据转换的时候的问题!把代码贴出来!