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 are the Types of chaching. How to implement caching
How to Insert/Add in ASPXgridview
How you can access the properties and controls of master pages from content pages?
What is the difference between session and viewstate?
What is the difference between Session and response.Redirect?
What are the ways to show data grid inside a data grid for a master details type of tables? If we write any code for DataGrid methods, what is the access specifier used for that methods in the code behind file and why?
In which event of the page viewstate is available?
How to turn off cookies for a page?
Why does my asp.net file have multiple tag with runat=server?
Why asp.net mvc is better than asp.net? : Asp.Net MVC
What is web api and why to use it?
How can we make sure that Web API returns JSON data only?
Give me one example of Web API Routing?
Is there any property names “isnavigating”?
What is ashx file in asp.net?