--Vamsi Effective Blogs "Make everything as simple as possible but not simpler"--
Dec 9, 2017
Differences Between JavaScript And TypeScript
›
Javascript Typescript It is a scripting language. It is an object oriented programming language(not pure). There is no static ty...
Simple Type Script Function
›
Step 1 : create a simple web application using Visual studio Step 2: add type script file with name of TSFunction.ts Step 3...
Dec 3, 2017
Simple TypeScript Application.!
›
Here is the simple TypeScript application using the Visual studio. Open Visual studio 2017 - I have installed the express version it'...
What is Type Script ?
›
TypeScript is a free and open-source programming language developed and maintained by Microsoft . It is a strict syntactical super se...
Jan 30, 2016
Updating a temporary table from another table by matching column values.
›
Hello, Im new to this Forum and I need to update a temporary table based on matching values from another table.For example i have two table...
Nov 9, 2015
Enable Cross-Origin Requests CORS in ASP.NET Web API
›
For enabling the CORS request in the ASP.NET Web API project, we have to download the cors package from the Nuget, i.e., Microsoft.AspNe...
Understanding Routing in ASP.NET MVC
›
Routing Engine uses routing rules that are defined in Global.asax file in order to parse the URL and find out the path of corresponding co...
Oct 27, 2015
There are several characteristics of C# are :
›
There are several characteristics of C# are : Simple Type safe Flexible Object oriented Compatible Consistent Interoperable Modern...
Give me the real time example of abstraction in c#.
›
A "Person" is the Example of OOPS. Skin hides the Heart methods, Body methods,........ as we donot need to know the implementation...
List down the commonly used types of exceptions in .Net?
›
ArgumentException, ArgumentNullException , ArgumentOutOfRangeException, ArithmeticException, DivideByZeroException , Overflow...
What are magic tables?
›
Magic tables are logical tables which are managed internally by SQL Server. In every DML operations first data move into these tables. ...
What are http handlers in ASP.NET
›
HTTP handlers are the .NET components that implement the System.Web.IHttpHandler interface. Any class that implements the IHttpHandler inter...
IEnumerable Vs IQueryable?
›
IEnumerable: IEnumerable is best suitable for working with in-memory collection (or local queries). IEnumerable doesn't move between ...
When we are using the combination of Inheritance and interfaces, in what order we have to use them and what separator is used?
›
The base class always comes first followed by the interfaces (in any order) separated by commas. For example: class MyClass : MyBaseClas...
What is the difference between HashTable and ArrayList?
›
1) HashTable is a collection of objects which store values based on key where as ArrayList is just a collection of objects stored based on i...
How to return Data from 4 Different tables in Stored Procedure with out using joins?
›
For selecting columns without join just do like this. Select table1.FieldName,table2.FieldName from table1,table2. Or if you want to...
What the difference between get and post?
›
Get method can carry only text data get method is faster as compared to post Data is passed through URL that is Data is append to URL Data ...
What is IOC and DI?
›
Inversion of control, it is a container that holds the objects and DI is a dependencey injection whereas we can remove the one object de...
What is Restful services? What is difference between SOAP and RestFul sevice?
›
Soap= lots of configuration + support only XML+ no cache Rest= get and post features of http + json or xml format + support cache 1-REST ...
Where Session ID Stores in Asp.net?
›
Session Data is always stored in Server(May be store in sqlserver or Out of Proc depend upon your choice ) and Server always generate a Sess...
What is the difference between display:none and visibility:hidden style?
›
visibility: hidden hides the element, but it still takes up space in the layout. display: none removes the element completely from t...
What is the difference between Singleton and Static class
›
Singleton: 1. Singleton class contains both static and non-static members 2. You can create instance of Singleton class. 3. You can i...
how much types of serialization support wcf
›
Basically WCF supports three types of serialization : XMLSerializer NetDataContractSerializer DataContractSerializer XMLSerializer...
Why multiple inheritance is not possible in c#
›
Because when two classes B and C inherit from A, and class D inherits from both B and C. If a method in D calls a method defined in A (and d...
How to add a button dynamically to a grid view?
›
Button myButton = newButton(); myButton.Text = "Hai"; myGrid.Controls.Add(myButton); How to find a control inside a Gri...
Asp.net checkboxlist, select or deselect all list items
›
< asp : ListItem Text ="Diploma" Selected ="True" Value ="1"></ asp : ListItem > protecte...
Binding an asp.net dropdownlist with an XML file
›
First add an XML file, to the web application project. To do this 1. Right click on the web application project, and select Add => New ...
›
Home
View web version