how can we display records in single datagrid using two
datasets in different place?

Answer Posted / nitin jadav

OracleConnection cn = new OracleConnection("user
id=scott;password=tiger;data source=ganesh1");
OracleDataAdapter da1 = new
OracleDataAdapter("select * from table1", cn);

DataSet ds = new DataSet();
da1.Fill(ds, "temp");

OracleDataAdapter da2 = new
OracleDataAdapter("select * from table2", cn);
DataSet ds1 = new DataSet();
da2.Fill(ds1, "temp");

ds.Merge(ds1);
dataGridView1.DataSource = ds.Tables[0].DefaultView;
label1.Text = ds.Tables[0].Rows.Count.ToString();

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between application state and session state in asp net?

736


Is there any property names “isnavigating”?

724


What is difference between asp state management and asp.net state management?

786


What is the purpose of session management?

694


What are the different properties of server control that exists?

755


How to send a DataReader as a parameter to a remote client ?

2956


What are the types of validation in asp net?

724


How do you change the session time-out value?

763


What is content page in asp net?

680


How can we secure the data which is send from client side to server? Like the login id and paasword needs to be authenticated on the server but we cannot send it in plain text into the server.One more thing we are not using the SSL here.

1684


What's the ASP.Net Application life cycle?

757


How can I configure asp.net applications that are running on a remote machine?

751


What are the advantages of the code-behind feature?

708


Using code explain Configuration Management

1593


What is cookieless session id explain in brief?

715