DetailsView

 

 实现DetailsView分页:

 

        实现DetailsView分页

            AutoGenerateRows="False" DataSourceID="SqlDataSource1" Height="50px" Width="163px">

            

                

                

                

                

                

                

                

            

        

        

            SelectCommand="SELECT * FROM [student]">

 

    

 

实现DetailsVies编辑功能:

 

 

        实现DetailsVies编辑功能

        

        

            DataSourceID="SqlDataSource1" Height="50px" Width="125px">

            

                

                

                

                

                

            

        

        

            SelectCommand="SELECT [StuID], [Stuname], [Address], [Grade] FROM [student]" UpdateCommand="update student set StuID=@StuID,Stuname=@Stuname,Address=@Address,Grade=@Grade where StuID=@StuID">

 

    

 

GridView控件+数据行详细信息:

 

 

        1。联合GridView控件

        

            BackColor="LightGoldenrodYellow" BorderColor="Tan" BorderWidth="1px" CellPadding="2"

            DataKeyNames="StuID" DataSourceID="SqlDataSource1" ForeColor="Black" GridLines="None"

            PageSize="5">

            

            

                

                

                

                

                

            

            

            

            

            

        

        

        数据行详细信息:

            SelectCommand="SELECT [StuID], [Stuname], [Stuage], [Grade] FROM [student]">

        

            BorderColor="#999999" BorderStyle="None" BorderWidth="1px" CellPadding="3" DataSourceID="SqlDataSource2"

            GridLines="Vertical" Height="50px" Width="325px">

            

            

            

            

            

                

                    

                

                

                

                

                

                

                

            

            

            

        

        

            SelectCommand="SELECT * FROM [student] WHERE ([StuID] = @StuID)">

            

                

                    Type="Int32" />

            

        

 

    

 

 

 

你可能感兴趣的:(DetailsView)