TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Bobindra Kumar
1.4k
324
12.3k
How to bind dataset multiple table in one gridview control
Apr 24 2018 8:22 AM
store producer return multiple table at a time
and i got these all table in my one dataset
so how i bind this dataset all table in my gridview
All table sturecture are not same
below is my code
public DataSet getdata(string actext, string feestext, string attandancetext, string examinationtext)
{
SqlConnection con = new SqlConnection(Commonfunction.getConnectionstring());
SqlCommand cmd = new SqlCommand("Sp_StudentReportCard", con);
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.AddWithValue("@Academic", actext);
cmd.Parameters.AddWithValue("@Fees", feestext);
cmd.Parameters.AddWithValue("@Attandance", attandancetext);
cmd.Parameters.AddWithValue("@Examination", examinationtext);
SqlDataAdapter adap = new SqlDataAdapter(cmd);
DataTable dt=new DataTable();
DataSet ds=new DataSet();
adap.Fill(ds);
foreach (DataTable table in ds.Tables)
{
for (int i = 0; i < ds.Tables.Count; i++)
{
dt = ds.Tables[i];
}
}
return ds;
Reply
Answers (
1
)
302 Found:Http message .....................................
asp.net Mvc types of fillters