0
私はチャートコントロールを使用したい。私はそれに2つのバーを表示したい。 1つは正しい答えに、もう1つはユーザーが与えた答えの合計です。私のSqlDataSourceザッツシンプルな2つの棒グラフ
:
<asp:SqlDataSource ID="AllQuestionStatistics" runat="server"
ConnectionString="<%$ ConnectionStrings:CP_AllQuestionsAnswered %>" SelectCommand=" DECLARE @TotalQuestions int;
DECLARE @CorrectQuestions int;
SELECT @CorrectQuestions = COUNT(WiningComment)
FROM Threads
WHERE WiningComment IN (SELECT CommentsID
FROM Comments
WHERE [email protected])
SELECT @TotalQuestions = COUNT(CommentsID)
FROM Comments
WHERE [email protected]
Select @CorrectQuestions as 'WinningAnswers',
@TotalQuestions as 'TotalAnswers',
" onselecting="AllQuestionAskedDataSource_Selecting">
<SelectParameters>
<asp:Parameter Name="TotalQuestions" />
<asp:Parameter Name="CorrectQuestions" />
<asp:Parameter Name="UserID" />
</SelectParameters>
</asp:SqlDataSource>
私は1つのバーとしてpresentTotalQuestionsにしたい、と別のbar..HowなどCorrectQuestions私はそう達成していますか?