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
How do you sign out from forms authentication?
What’s difference between “optimistic” and “pessimistic” locking?
What is a user session?
What is session start?
Explain how is the asp.net mvc architecture different from others? : asp.net mvc
Can master pages be nested?
How do you create a master page?
Where is session data stored in asp net?
Describe the diffeerence between inline and code behind?
Describe the difference between inline and code behind - which is best in?
Explain the asp.net page life cycle.
How you will handle session when deploying application in more than a server?
What is the advantage of using Windows authentication in a Web application?
What is http pipeline in asp.net?
What is marshalling ? Is it a part of asp.net ?