Which is the best way to show a status message in asp.net. For example, after saving data to DB I want to show a message like ‘Data Saved Successfully”. I would like to know which is the best way to show this kind of status message in asp.net.
Thanks All.
On the success of your query, in code behind You can just add text to a lable like:
Don’t give and default text to that label in design page.
further more you can give color to that label like :
SO that it will look like a Success Message.
Hope this helps.