In this tutorial I will teach you how to Backup SQL Database with your SQL Server Management Studio (SSMS). This will save you from losing your data in case of any SQL Server problem.
The following steps explain how to do Full Backup of your database using SSMS.
Click the plus sign in-front of the Databases node. This will show all the databases.
(more…)
jQuery .grep() method is used to filter an array based on a provided condition. The condition is provided by a filter function. For an item to be included in the result the filter function should return true for it.
(more…)
The jQuery CSS Method returns the CSS Style property value of the first matched element. It can also set, single or multiple CSS Style properties on the selector.
Note that the selector can itself be a single or multiple elements.
There are 5 syntax of this method, you can use anyone of them depending upon the situation.
(more…)
The jQuery Find Method (.find()) returns all the descendants of the selector. The descendants are the elements that lie inside the selected element. These can be it's children, children of children, children of children of children, and so on.
(more…)
The best part?
I’m going to show you 7 ways to use jQuery Each method in your website.
In short: if you want to implement .each() method, then you’ll love this guide.
Let’s get started.
Cascading dropdownlist Controls are those that depend on the selected value of each other dropdownlist. Here, when a value is selected on one dropdownlist, the depending dropdownlist is populated with another set of values.
A classic example of cascading dropdownlist is of Countries & Cities. One dropdownlist carries Country names and other carries the Cities of the Selected Country.
When a user selects a country (example United States) in the Country dropdownlist then the City dropdownlist is populated with the cities of United States (example NYC, Albany, San Francisco, Washington DC, Chicago, Los Angeles).
(more…)
The jQuery Prepend method prepends the content inside of every matched element (selector) i.e. it insert the specific content as the first child of the selector.
It is exactly opposite to the jQuery Append method and is very helpful in doing DOM Manipulations.
(more…)
The jQuery Append method appends the content inside of every matched element. It is very helpful in doing DOM Manipulation.
$(selector).append( content [, content ] [, content ] [, content ]..... )(more…)
CRUD – Create Read Update Delete are the first step to learn in database programming. Entity Framework helps you can do the CRUD Operations easily in ASP.NET Web Forms. The Entity Framework (EF) makes coding simpler and faster.
In this tutorial I will teach you how to use Entity Framework (EF), I will create a Student Form which will create Student Entries (Records) in the database. Below this form I will put a GridView control, to read all the records and show them to the user.
The GridView will also help in Updating and Deleting these Student Records through the Edit and Delete icons that are provides in each of it's rows.
(more…)
CRUD Operations are the basic thing when performing database operations. You can insert a record then read, edit or delete it from the database. If you want to learn how to use Entity Framework for database operations in ASP.NET MVC website then this tutorial is going to help you a lot. So let’s start with it.
The database table where the information will be inserted is the Student table.
(more…)