Calling a non-virtual method, decided at a compile time is known as early binding. Calling a virtual method (Pure Polymorphism), decided at a runtime is...
A language should comply with the Common Language Runtime standard to become a .NET language. In .NET, code is compiled to Microsoft Intermediate Language (MSIL...
public class DataManager { string connectionString = "Data Source=(local);Initial Catalog=CompanyDb;Persist Security Info=True;User ID=sa;Password=123"; public int...
It is a state management technique in asp.net. ASP.NET Viewstate is preserving the data between the requests or postbacks and stored in hidden fields on...
// Creating table and inserting some records create table email_list ( name varchar(100), email varchar(50) ) go insert into email_list values ('himanshu', 'him@gmail.com'); insert into...