Difference between DELETE and TRUNCATE Command
DELETE Comand Vs. TRUNCATE Command TRUNCATE command : TRUNCATE command is faster in compare to DELETE command as it uses fewer system & the transaction log resources . This commands…
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 ADO and ADO.Net | ADO vs. ADO.Net | A Comparison of ADO and ADO.Net
ADO : ActiveX Data Objects and are two different ways to access database in Microsoft. ADO ADO is base on COM : Component Object Modelling based. is based on CLR…
Difference between Panel and PlaceHolder Control | Panel Control vs. PlaceHolder Control in ASP.Net
Panel Control vs. PlaceHolder Control Panel Control PlaceHolder Control Panel Control does have its visual layout and used as the container for other controls. PlaceHolder control does not have…
Array in C#
When we want to store more than one value of single datatype in a variable, we use we can say that arrays are strongly types. How to Create an Array…
Comments in C# | Different Types Of Comments in C#
Comments are that block of code that is used for program documentation and those line(s) of code is ignored by compiler while execution. There are three ways of commenting in…
Verbatim Literals in ASP.Net and C#
Have you ever come up with standard where you wanted to access a path in a program. Lets just say : d:\binoy\jpeg\website\ If I want…
Parse vs. TryParse | Difference between Parse and TryParse
Parse vs. TryParse Parse TryParse Parse is used to convert data from string to other data type. It always expects a string to be passed. Parse throws an exception if…
Difference between Implicit Conversion and Explicit Conversion | Implicit Conversion vs. Explicit Conversion
Implicit Conversion Explicit Conversion Implicit Conversion is done automatically. Explicit Conversion is done programatically. In Implicit conversion, no data loss take place during the data conversion. In explicit conversion, data…
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…