-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 に答える