程序
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>
有活跃的用户和不活跃的用户。如果您发现这很有用并且它解决了您的问题,请将其标记为答案并放弃投票。