Asp.net Tutorial

Difference between Temp table and Temp variable:

Temp Table TempVariable Scope of Temp Table is wider the temp variables of. Local temporary tables [More]

Difference between excel and csv file.

Excel is the file for a Microsoft Excel Spreadsheet containing data in the form of row and column ha [More]

Which one is faster between MVC and ASP.net?

MVC is only a pattern.This depends on many factors, We should consider our project size, architectur [More]

Set Sqlite to be case insensitive when string comparing?

We can use upper to make Sqlite Query case insensitive.SELECT * FROM TableName WHERE UPPER(name) = U [More]

The type initializer for 'System.Data.Entity. Migrations. DbMigrationsConfiguration`1' threw an exception.

The type initializer for 'System.Data.Entity.Migrations.DbMigrationsConfiguration`1' threw an except [More]

Sql CharIndex Function

The CHARINDEX  function returns the starting position of the specified expression in a characte [More]

Export html table to csv using javascript

<table>    <tr><th>Name</th><th>Age</th><th> [More]

Different types of Keys in sql server.

Candidate Key Candidate key is a key of a table which can be selected as a primary key of the table. [More]

What is key in Sql Server?

Keys are fields in a table which participate in below activities in RDBMS systems: To create relati [More]

Create /drop Database or Table

{CREATE | DROP} DATABASE – Used to create / alter / delete a database respectively. &nbs [More]