tag

home / developersection / tag

Difference between executereader and executenonquery in c#
c# 28-Dec-2018
Difference between executereader and executenonquery in c#

ExecuteNonQuery(): It will work with Action Queries only (Create,Alter,Drop,Insert,Update,Delete). Returns the count of rows affected by the Query.

Conversational Marketing for Small and Medium Businesses
business 14-Dec-2018
Conversational Marketing for Small and Medium Businesses

It is no surprise that marketing is one of the most difficult tasks for any business to execute. Moreover, in most cases, small or medium businesses just don’t have the budget to assign to marketing channels.

What are the web security in MVC ?
security in .net 03-Aug-2018
What are the web security in MVC ?

WebSecurity in MVC:-These are some web-security feature in MVC like as – 1). Authentication and Authorization in Asp.net MVC. 2). Membership provide

Development an application of Databases Using .NET Framework
c# 27-Apr-2018
Development an application of Databases Using .NET Framework

Well, before going to the topic we should first discuss what is this database programming? It is software that is used for the management of data an

Jagged Arrays in C#
c# 27-Nov-2017
Jagged Arrays in C#

In this post, we will learn about Jagged Arrays in C# with an example. Description A Jagged array is an array of arrays. Jagged Array is also call

WHAT IS A VARIABLE?
web development 10-Jul-2017
WHAT IS A VARIABLE?

Variable is anything which is not consistent. In computer science, a variable is a block of memory where numbers or characters can be stored. Typical

Indexer in C# with example
c# 08-Mar-2017
Indexer in C# with example

The indexer is a class property that’s treated an object as an array. Or in other word indexer is a class property that’s access a class or structure in the same way as arrays.

Difference between Singleton class and Static class
c# 02-Mar-2017
Difference between Singleton class and Static class

Static class in like the normal class the feature of static class is that we can make object of static class and it contain only static members. This is also knowns as sealed class means we cannot inherit it into the child class.

ArrayList and Hashtable
c# 02-Mar-2017
ArrayList and Hashtable

In this article I will explain concept of hashtable and arrayList , its uses and the differences between hashtable and arrayListArrayList is a non-gen

Multithreading in csharp
c# 26-Feb-2017
Multithreading in csharp

It is the path of Execution. Each thread defines the unique flow of control .Threads are lightweight process. Use of threads saves wastage of CPU cycle and increase efficiency of an application

Fundamental of C Sharp
c# 26-Feb-2017
Fundamental of C Sharp

It is a placeholder in the memory that can be used to store the data,its value can be changed, using the data type we can specify that what kind of value will be stored in the variable.

View state, Cookie and Session
c# 21-Feb-2017
View state, Cookie and Session

All these three are used to maintain state management. View and Cookie come under client state management technique and session come under server state management technique