hi, for this stuff you'd be better looking at the SQLServer forum.
Here's an example of a trigger which writes to an audit table for an UPDATE. I was given a *lot* of help from someone on the SQL forum to write this so if you have any technical problems with it, you will probably have to go to the forum.
You will have to do seperate triggers for INSERT and DELETEs.
CREATE TRIGGER [TR_UPDATEmyTable] ON [myTable]
FOR UPDATE
AS
DECLARE @cvErrorMessage varchar(255), @BegineTransCount int
SELECT @BeginTransCount = @@TRANCOUNT
--put business rules before transaction
BEGIN TRANSACTION
--fill audit table only on name changes and what the record used to look like
INSERT myTable_AUDIT (field,
...all your fields...,
field )
SELECT d.modified<idfield>,
d. ...etc...
FROM deleted d
JOIN inserted i on i.idfield ON i.<idfield> = d.<idfield>
WHERE IsNull (i.modified_id, ""

<> isNull(d.modified_id, ""
IF @@Error <> 0
BEGIN
SELECT @vcErrorMessage = "Error: unable to write UPDATE audit record for <myTable>."
GOTO Error
END
error:
IF @vcErrorMessage IS NULL
BEGIN
IF @@TRANCOUNT > @BeginTransCount COMMIT TRANSACTION
END
ELSE
BEGIN
IF @@TRANCOUNT > 0 ROLLBACK TRANSACTION
RAISEERROR ( @vcErrorMessage, 16, 1)
END