Yes, you can create triggers on views. (Since at least SQL Server 2000. )
If you create a trigger on a view, it will not trigger insertions into the base table. If you want something to happen when you insert data into the base table, create a trigger in the base table.
INSTEAD OF .
, ?