使用datatable绑定gridview文本框

使用datatable绑定gridview文本框

本文介绍了使用datatable绑定gridview文本框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个gridview,其中1个studentname dropdownliast列和3个textbox列。我希望当我在下拉列表中选择一个学生时,其他3列是自动填写...其中我想显示父姓,课程,学期。





i我正在使用这个sql--





 sql =  选择代码*,来自学生& _ 
关于course.courseid = student.courseid的内部联接课程& _
其中admissionno ='&入学没有& '
Dim dt As DataTable = Hari.Utility.db.GetRecodeDT(sql)







如何在下拉列表中绑定gridview文本框更改..

解决方案

i have a gridview in which 1 studentname dropdownliast column and 3 textbox column. i want that when i am selecting a student in dropdownlist then the other 3 columns are auto fill.. in which i want to show fathername,course,semester.


i am using this sql--


sql = " select code,* from student " & _
                " inner join course on course.courseid=student.courseid " & _
                " where admissionno='" & AdmissionNo & "'"
          Dim dt As DataTable = Hari.Utility.db.GetRecodeDT(sql)




how can i bind gridview textbox on dropdownlist change..

解决方案


这篇关于使用datatable绑定gridview文本框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-30 07:44