手順
create procedure select
@activity
as
Begin
Select Count(UserID) FROM users where Status = @activity
end
C# ページの読み込み
string activity1="active";
string activity2="Inactive";
sqlconnection con=new sqlconnection("give your connection string");
sqlcommand cmd=new sqlcommand();
cmd=new sqlcommand("select",con);
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.AddWithValue("@activity",activity1);
String result1=cmd.ExecuteNonQuery();
sqlcommand cmd1=new sqlcommand();
cmd1=new sqlcommand("select",con);
cmd1.CommandType = CommandType.StoredProcedure;
cmd1.Parameters.AddWithValue("@activity",activity2);
String result2=cmd.ExecuteNonQuery();
Label1.Text=result1;
Label2.Text=result2;
.aspx ページ
私のホームページへようこそ 現在<asp:label id="Label1" runat="server"></asp:Label>
、私のページに<asp:label id="Label2" runat="server"></asp:Label>
はアクティブなユーザーと非アクティブなユーザーがいます。これが役に立ち、問題が解決した場合は、回答としてマークし、賛成票を投じてください。