What is sequence of code in retrieving data from database?
Answer Posted / seshu
SQLConnection conn = new
SQLConnection("DataSource=;InitialCatalog=;User Id=;Password=");
SQLCommand cmd=new SQLCommand("select * from tablename",conn);
DataAdapter da=new DataAdapter(cmd);
Dataset ds=new Dataset();
da.fill(ds,"tablename");
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
Explain about the Class view window?
Define tracing.
What is the importance of aspnet_isapi.dll, inetinfo.exe andaspnet_wp.exe in the page loading process.
Define satellite assemblies.
What is the difference between union and join?
Explain server control extensibility with reference to asp.net 2.0 ?
How asynchronous call can be implemented using delegates?
What is the difference between session and viewstate?
What is clr? Difference between clr & cts?
What is cached data phone?
Explain server side state management system.
Which tool you have done?
What are the different validators in asp.net?
What is asp.net architecture?
What is odata in web api?