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
What is the difference between application state and session state in asp net?
Is there any property names “isnavigating”?
What is difference between asp state management and asp.net state management?
What is the purpose of session management?
What are the different properties of server control that exists?
How to send a DataReader as a parameter to a remote client ?
What are the types of validation in asp net?
How do you change the session time-out value?
What is content page in asp net?
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.
What's the ASP.Net Application life cycle?
How can I configure asp.net applications that are running on a remote machine?
What are the advantages of the code-behind feature?
Using code explain Configuration Management
What is cookieless session id explain in brief?