Using C# with ASP.NET, how do I show a \"success\" message when my user submits a form? And at the same time say \"The image has successfully saved\", with a link, so that t
İf you want to show message on client side controls, like alert("saccess"); you can use ajax and webmethod in Why doesn't my jQuery code work in Firefox and Chrome? if you want to show message on server side you can use panel, label or div (runat server and have id) and default setting of them, set visiible false, when you show message you can set visible true via code behind..