Click here to Skip to main content
15,885,278 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Guys Good Morning :)

How to write a Code for Standard Display of Message After a Button_click Success for Web Application?

For Windows application it goes like this?
MessageBox.Show("Record Saved", "Report", MessageBoxButtons.OK, MessageBoxIcon.Information);


I am new to web application please help!!! :)
Posted
Comments
Sergey Alexandrovich Kryukov 18-Jun-12 1:16am    
Standard?
--SA

1 solution

see this Example:-

C#
protected void BtnSave_Click(object sender, EventArgs e)
    {
savedata();
ScriptManager.RegisterStartupScript(Page, GetType(), "JsFunction", "Alert('Record Saved');", true);
}
 
Share this answer
 
Comments
Vani Kulkarni 18-Jun-12 1:28am    
Clear and concise. 5!
Harsha Dev 18-Jun-12 2:47am    
thanks man...
Prosan 18-Jun-12 4:00am    
why u reject solution after accepting solution. it is correct accept solution.

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