complete web developing asp.net c-sharp (c#), sql-server and complete responsive web designing (html-html5, css-css3, java-script, jquery, bootstrap, photoshop)
Trigger on view using INSTEAD OF INSERT
To Create INSTEAD OF INSERT triggers in sql server first of all we need to create a table (but we create two table) for which we apply trigger and need another table that hold...
To Create INSTEAD OF INSERT Triggers first of all we need to create a table (but we create two table) for which we apply trigger and need another table that hold all activity in main table.
--We cretate tblDeparment table
create...
AFTER UPDATE Trigger
To Create AFTER Triggers first of all we need to create a table (but we create two table) for which we apply trigger and need another table that hold all activity in main table.
--We create tblDeparment...
AFTER DELETE Trigger
To Create AFTER Triggers first of all we need to create a table (but we create two table) for which we apply trigger and need another table that hold all activity in main table.
--We Create below...
AFTER INSERT Trigger
AFTER INSERT Trigger fire after the triggering action Insert but before competition to the databases. AFTER Insert Trigger has the ability that it can rollback modification action or statements.
To...
What is trigger
Triggers is a special type of database operation (In many way it is similar to a stored procedure) which execute automatically when perform DML (INSERT, UPDATE, DELETE) operation on the table or views or perform DDL (CREATE, AKTER, DROP) operation on Table, Function, Index, Store...
Main method
In C++, The first character of the main() function must be small
e.g.
int main ()
{
int a = 100;
int b = 200;
}
In C#, The first character of the Main() function must be capitalized and should return either int or void
e.g.
static int Main(string[] args)
{
int a =...
What is c# (C Sharp)
C# is new computer programming language which is simple because it based on C++ and Java, which is developed by Microsoft Corporation and submitted to the ECMA for standardization and announced to...
ASP.NET Web Site Administration Tool
ASP.NET Website Administration tool is a utility provided along with Microsoft Visual Studio
Microsoft Visual Studio which helps you manage user authentication in your Web sites.
Features...
Origin of .net technology
OLE(Object Linking and Embedding) Technology :-
It is a technology developed by Microsoft and use to embed documents from one application into another application and manipulate object in...