What is early binding and Late binding. Difference which is
better ?
Answers were Sorted based on User's Feedback
Answer / rakesh kamboj
Early binding:: Properties and method can be identified by
compile time.
Example: dim rs as recordset
Late binnding: Properties and method can be identified by
Run time.
Example: dim obj as classname
set obj=new classname
Is This Answer Correct ? | 10 Yes | 2 No |
Answer / sudhir kunnure
Early binding means one of function or type declaration
compile first then it excute.
late binding function or type direct excute at runtime
Is This Answer Correct ? | 4 Yes | 3 No |
How to handle error while project running on live
Which namespace do the classes, allowing you to support COM functionality, are located?
What are the page level transaction and class level transaction?
In asp.net application, if a webpage or total application seems too slow or getting delayed to load completely in the browser. As a developer, what are the checkings or actions you will take in the application or server side to rectify the slowness or delay load or which are the factors related to this issue? How we can trace it?
State Management (viewstate, session etc)
Are there resources online with tips on asp to asp.net conversions?
Explain Areas in MVC?
What are the different kinds of assemblies?
How do u deploy your asp.net application?
Let's say I have an existing application written using vb6 and this application utilizes windows 2000 com+ transaction services. How would you approach migrating this application to.net?
How do you specify whether your data should be passed as Query string and Forms (Mainly about POST and GET)
To load your generated dataset with data which method do you invoke?