i want to know how can we create simple trigger in sql server 2000 and how to call from asp.net .
complete code for it will be verry helpfull.
i want to know how can we create simple trigger in sql server 2000 and how to call from asp.net .
complete code for it will be verry helpfull.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
abhishek trivediPosted Sep 18, 2007, 5:25 AM
i know how to create trigger but i want to know how to call them from asp.net web application?
thank you,
Posted Aug 2, 2007, 5:49 AM
Triggers automatically fires, when you perform any operations on the table. U can write triggers for Insert,Update and delete.
There are two types of trigger u can write.
1. After
2. Instead of
By default it is after. I am writing some code for creating trigger.
It's the after trigger.
I think it will help you.