
Search In
In writing the code in MVC we can use the LINQ Language Integrated Query then we use this query for interacting with the database that will make the manipulations easier and time efficient in terms of execution and in terms of programming .
&n
Partial View in MVC is used when we want to use section for the master or the main page again and again.
It is just like a user control that is used to display or get data in the view that we want.
So as a beginner, you first need t
SignalR is a new library for .Net developers for creating real time web functionality, can also be defined as asynchronous signalling library. SignalR provides two way communication between client and server. SignalR can be used for creating real tim
There might be some scenario in your code, where some of the tasks should be performed in the background without affecting the current task. Some time we have scenario, where we needed to fire the function, which consists of some function call, where
The IFNULL( ) function is available in MySQL, and not in SQL Server or Oracle. This function takes two arguments.
If the first argument is not NULL, the function returns the first argument. Otherwise, the second argument is returned.
Subnet Masking
While applying a subnet mask to the existing IP address you have to identify the the network and the node part of the address.
The network bits will be represented by the 1s in the mask , and the node part i
Communication in IPV6
In IPV6 we dont have any broadcast technique for delivering message and data.
The IPV6 can not be dependent on the DHCP Dynamic Host Control Protocol for the configuration , it also auto configure its own IP.
In MVC while performing the interaction with the database we can use Language Integrated Query for easier manipulation of the data in the data source.
We can use it very easily by first creating the Data Context for
STUFF():-
STUFF is SQL SERVER function which is used to insert the string in another string. It deletes the specified number of characters from first string and insert the new string in the place of d
How to insert value in an auto incremented column in SQL
Sometimes we have situation to insert value in an auto incremented column. Let's discuss this with a simple example.
Example
1) Here is my table structure.
CREATE TABLE Student(
Id INT