Answer Posted / rahul bhatnagar
UnType Dataset
You will get type mismatch and other errors at compile time.
Type Dataset
You will get type mismatch and other errors at runtime.
Example :
string custid;
custid=dsetcust.customer(0).customerid;
untyped dataset
string custid;
custid=Convert.toString(dsetcust.customer(0).customerid);
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is asp.net futures?
What are the different validators in asp.net?
What are the authentication types in asp.net?
Can you explain composite pattern?
What are app services?
How does a web application session work?
What is the difference between custom web user control and a custom web server control?
Can we have multiple master pages in asp net?
Does google crawl redirects?
What are the 3 types of web?
Can you edit data in the Repeater control? Which template must you provide, in order to display data in a Repeater control? How can you provide an alternating color scheme in a Repeater control? What property must you set, and what method must you call in your code, in order to bind the data from some data source to the Repeater control?
What are different methods of session maintenance in asp.net?
Define satellite assemblies.
What are web beacons used for?
Explain the difference between codebehind="mycode.aspx.cs" and src="mycode.aspx.cs"?