Click here to Skip to main content
15,911,715 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
I am trying to show a popup message to the user after the sucessfull delete of a selected record, how can that be done?
Posted
Comments
[no name] 21-Aug-13 6:26am    
if (deleteSuccessful)
{
// show message
}
Rock_Dead 21-Aug-13 6:35am    
this is not working,, i m asking like how can i call a java script for showing the message
[no name] 21-Aug-13 6:42am    
Sure does work.
Rock_Dead 21-Aug-13 6:36am    
i want to show the message through java script
[no name] 21-Aug-13 6:41am    
Can you point out where in your "question" it says anything about javascript? Anywhere at all? The quality of your answers is directly proportional to the quality of your question.

1 solution

Use alert to show the message...

JavaScript
<script>
alert('Delete Successful');
</script>
 
Share this answer
 
Comments
Rock_Dead 21-Aug-13 7:14am    
how can i call this script in the row deleted event?
Yesudasan Moses 21-Aug-13 7:16am    
which tool you are using at the server side ?
Rock_Dead 21-Aug-13 8:03am    
if u mean the data base it is oracle
Rock_Dead 21-Aug-13 8:03am    
And the front end is Visual Studio
Yesudasan Moses 21-Aug-13 8:47am    
You are developing web application or windows application ?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900