Click here to Skip to main content
16,012,316 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Javascript for checkbox Pin
Shajeel24-Nov-06 0:52
Shajeel24-Nov-06 0:52 
QuestionHow to Create a Property Which will contain a Dropdown? Pin
fasih198123-Nov-06 23:51
fasih198123-Nov-06 23:51 
AnswerRe: How to Create a Property Which will contain a Dropdown? Pin
sam L26-Nov-06 10:10
sam L26-Nov-06 10:10 
QuestionImage Pin
AnhTin23-Nov-06 22:22
AnhTin23-Nov-06 22:22 
QuestionRe: Image Pin
Guffa23-Nov-06 23:13
Guffa23-Nov-06 23:13 
AnswerRe: Image Pin
Britney S. Morales24-Nov-06 11:20
Britney S. Morales24-Nov-06 11:20 
GeneralRe: Image Pin
AnhTin27-Nov-06 17:34
AnhTin27-Nov-06 17:34 
Questioninsert trigger Pin
playout23-Nov-06 22:04
playout23-Nov-06 22:04 
Hi,

I have code that fires a stored procedure, to insert a new location.
I now need to add another insert, that inserts a destination into another table, using a trigger.

I pass the following variable to my location table : @LocationCode

I want to create a trigger, that everytime an INSERT is fired on the Location table, it should add a row to my Destination table.

Here is what I have to create the trigger:

<br />
<br />
CREATE TRIGGER DestInsert ON [Location]<br />
FOR INSERT<br />
AS<br />
<br />
INSERT INTO Destination<br />
                      (LocationCode, Destination, AreaCode, DeletedFlag)<br />
VALUES     (@LocationCode, 'New', '123C', 0)   <br />
<br />


Will this create a trigger for me, that adds the same @LocationCode variable I added for the stored Procedure to the trigger?
AnswerRe: insert trigger Pin
DineshSharma23-Nov-06 22:43
DineshSharma23-Nov-06 22:43 
GeneralRe: insert trigger Pin
playout23-Nov-06 22:50
playout23-Nov-06 22:50 
GeneralRe: insert trigger Pin
Paddy Boyd24-Nov-06 0:41
Paddy Boyd24-Nov-06 0:41 
QuestionCalendar Control Pin
VaibhavTiparadi23-Nov-06 21:51
VaibhavTiparadi23-Nov-06 21:51 
AnswerRe: Calendar Control Pin
DineshSharma23-Nov-06 22:38
DineshSharma23-Nov-06 22:38 
GeneralRe: Calendar Control Pin
VaibhavTiparadi23-Nov-06 23:18
VaibhavTiparadi23-Nov-06 23:18 
GeneralRe: Calendar Control Pin
Shajeel24-Nov-06 1:10
Shajeel24-Nov-06 1:10 
QuestionHow to use RSS in asp.net Pin
swguy2323-Nov-06 21:25
swguy2323-Nov-06 21:25 
AnswerRe: How to use RSS in asp.net Pin
Dominic Pettifer24-Nov-06 13:56
Dominic Pettifer24-Nov-06 13:56 
Questionalert problem Pin
Kissy1623-Nov-06 20:33
Kissy1623-Nov-06 20:33 
AnswerRe: alert problem Pin
RaviJJain23-Nov-06 20:46
RaviJJain23-Nov-06 20:46 
GeneralRe: alert problem Pin
Kissy1623-Nov-06 21:03
Kissy1623-Nov-06 21:03 
AnswerRe: alert problem Pin
RaviJJain23-Nov-06 21:13
RaviJJain23-Nov-06 21:13 
GeneralRe: alert problem Pin
Kissy1623-Nov-06 22:43
Kissy1623-Nov-06 22:43 
GeneralRe: alert problem Pin
RaviJJain23-Nov-06 23:22
RaviJJain23-Nov-06 23:22 
GeneralRe: alert problem Pin
Kissy1624-Nov-06 0:55
Kissy1624-Nov-06 0:55 
GeneralRe: alert problem Pin
RaviJJain24-Nov-06 1:51
RaviJJain24-Nov-06 1:51 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.