Pages

Subscribe:

Ads 468x60px

Tuesday, November 22, 2016

what is MVC in ASP.NET

Microsoft has introduced a new Technology for web development called ASP.NET MVC.
MVC stands for
1- Model
2- View
3- Controller
MODEL
model Represents core business logic and data.
View
View represents data or model or models in visual representations.
Controller
Controller play a dynamic role between model and view to process the user input and produce output.

Friday, August 19, 2016

SQL Query to Delete data from Database

The DELETE statement allows rows to be deleted from named table by using following Command

DELETE FROM tableName
WHERE [searchcondition]

exact syntax:
Delete from staff
where staf_id=12;