-3

我比较新鲜,我为我的 sql 表创建了一个存储过程,我想将这些数据显示到 aspx 页面中。

我需要..ajax、js、asp.net 的代码

4

1 回答 1

1

从我的头顶是这样的:

using (SqlConnection con = new SqlConnection(ConnectionString)) {
    con.Open();
    using (SqlCommand command = new SqlCommand("ProcedureName", con)) {
        command.CommandType = CommandType.StoredProcedure;
        using(SqlReader reader = command.ExecuteReader()){
            if (reader.HasRows) {
                 while(reader.Read()) {
                     ... process SqlReader objects...
                 }
            }
        }
    }
}

编辑:对不起,错过了“检索”信息。

于 2013-10-17T10:51:05.517 回答