Difference between HTML Controls and ASP.Net Standard Controls | HTML Controls vs. ASP.Net Controls
HTML Controls Controls HTML control runs at client side. controls run at server side. You can run HTML controls at server side by adding attribute runat=”server”. You can not run…
Difference between Java and JavaScript | Java vs. JavaScript
Many people assumes that JavaScript is similar to Java language as it contains the name but it is not true and today we well see how Java and JavaScript differs…
How creating a configuration class speedup your c# web application ?
I was creating an application with n-tier design in mind. Actually this was just a conceptual n-tier, it would be more appropriate if I call it n-layered application as the…
Difference between C & C++ | C Language Vs. C++ Language
C Language Vs. C++ Language C Language C++ Language Language ‘C’ is a procedure Oriented language. ‘C++’ is an object oriented language. Founder ‘C’ language is developed by Dennies…
Data Types in PHP | PHP Data Types
Data Type in any programming language used to specify type of data which may be Boolean, Integer, Float, Double, String Character, etc. In PHP there are mainly four types of…
Difference between Abstract Class and Interface | Abstract Class Vs. Interface
Difference between Abstract Class and Interface | Abstract Class Vs. Interface Abstract Class Interface Definition An Abstract Class is always used to serve as a base class as it can’t…
Difference between Cohesion and Coupling | Cohesion vs. Coupling
Difference between Cohesion and Coupling | Cohesion vs. Coupling Key to good design is functional independence and key to software quality is design. Functional independence is evaluated using two criteria:…