I have grid in my ASP.NET page (actualy it’s Telerik RadGrid). There is GridButtonColumn, and OnItemCommand event is called when user clicks the link in this cell.
Right now, after user clicks, some data is prepared in the background and sent by e-mail. At the end of my method I want to display to user, that operation was succeeded. Any ideas, how can I reach that goal? I cannot use JavaScript in this event (there is no OnClick event or ClientScript property), and I want user to stay on current page, so also no Response.Redirect can be used.
Please, share some ideas, how to inform user, that operation was successful.
Javascript is the best option , To display Alert or Popup to user.
You can also do one thing , Place One DIV on Header of grid and give some style to DIV and display your message on that div.