私は新鮮です.SQLテーブルのストアドプロシージャを作成し、それらのデータをaspxページに表示したかった..
私は..ajax、js、asp.netのコードが必要です
頭のてっぺんからは、次のようになります。
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...
}
}
}
}
}
編集:申し訳ありませんが、「取得」情報を逃しました。