C# 復制代碼
[Microsoft
public static void StoredProcExecuteCommand(int rating)
{
// Connect through the context connection
using (SqlConnection connection = new SqlConnection(
{
connection
SqlCommand command = new SqlCommand(
command
// Execute the command and send the results directly to the client
SqlContext
}
以上存儲過程的執行結果怎麼樣在ASP
如果想把以上存儲過程的返回結果體現在DataList控件中
;
From:http://tw.wingwit.com/Article/program/net/201311/12644.html