本文介绍了我想在第一个表中的showterm与第二个表中的showterm相等时选择第一个表中的所有内容,并使用Gridview显示的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

<tr>
    <td>
        <asp:GridView ID="GridView1" runat="server" CssClass="LabelText"

            DataSourceID="SqlDataSource1" " 

        </asp:GridView>

    </td>
</tr>
<tr>
    <td>
        <asp:SqlDataSource ID="SqlDataSource1" runat="server"

            ConnectionString="<%$ ConnectionStrings:PRG_jsuConnectionString4 %>"

              SelectCommand="SELECT * FROM [PRGcourse] JOIN [user_code] ON [PRGcourse.showterm] = [user_code.Term] ""



        >
        </asp:SqlDataSource>
    </td>
</tr>


我有两个表:
PRGcourse
-课程名称
-CourseId
-类别名称
-showterm

user_code
-名称
-家庭
-studentId
学期
我想在第一个表中的showterm与第二个表中的Term相等时选择第一个表中的所有内容,并使用Gridview显示它.我在页面中编写代码,但是此代码没有任何作用,请帮助我


I have two table:
PRGcourse
-Coursename
-CourseId
-Catenaname
-showterm
and
user_code
-Name
-family
-studentId
-Term
I want select every thing in first table when showterm in first table equal with Term in second table and display it with Gridview.I write code in up the page but this code don''t do any thing Please help me

推荐答案


我有两个表:
PRGcourse
-课程名称
-CourseId
-类别名称
-showterm

user_code
-名称
-家庭
-studentId
学期
我想在第一个表中的showterm与第二个表中的Term相等的情况下选择第一个表中的所有内容,并使用Gridview显示它.我在页面中编写代码,但是此代码没有任何作用,请帮帮我


I have two table:
PRGcourse
-Coursename
-CourseId
-Catenaname
-showterm
and
user_code
-Name
-family
-studentId
-Term
I want select every thing in first table when showterm in first table equal with Term in second table and display it with Gridview.I write code in up the page but this code don''t do any thing Please help me


SELECT * FROM PRGcourse JOIN user_code ON PRGcourse.showterm = user_code.showterm


这篇关于我想在第一个表中的showterm与第二个表中的showterm相等时选择第一个表中的所有内容,并使用Gridview显示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 00:10