How to show Message Box in Asp.Net with C#
-
-
ASP.Net is a server side code and u wanted to show any message to end user on web based application then u go with javascript alert method or try to have new web page just for showing messages alone.
-
Hi, You can use any one of the Following Syntax in Code Behind. string Msg = "Hai"; string jv = "alert('" + (Msg) + "');"; ScriptManager.RegisterClientScriptBlock(this, typeof(Page), "alert", jv, false); (or) Page.RegisterStartupScript("Error", "alert('Hai')"); bye :rose:
-
See this http://vuyiswamaseko.blogspot.com/2009/04/how-to-show-mesage-box-in-aspnet.html[^] Hope it Helps :)
Vuyiswa Maseko, Few companies that installed computers to reduce the employment of clerks have realized their expectations.... They now need more and more expensive clerks even though they call them "Developers" or "Programmers." C#/VB.NET/ASP.NET/SQL7/2000/2005/2008 http://www.vuyiswamaseko.tiyaneProperties.co.za vuyiswa@its.co.za http://www.itsabacus.co.za/itsabacus/
-
See this http://vuyiswamaseko.blogspot.com/2009/04/how-to-show-mesage-box-in-aspnet.html[^] Hope it Helps :)
Vuyiswa Maseko, Few companies that installed computers to reduce the employment of clerks have realized their expectations.... They now need more and more expensive clerks even though they call them "Developers" or "Programmers." C#/VB.NET/ASP.NET/SQL7/2000/2005/2008 http://www.vuyiswamaseko.tiyaneProperties.co.za vuyiswa@its.co.za http://www.itsabacus.co.za/itsabacus/
Vuyiswa, I saw your post. its cool. Will it work if we have ScriptManager in that page? In that case you have to use ScriptManager insted of ClientScript. You may add this section also on that post. Thanks !
cheers, Abhijit CodeProject MVP
-
Vuyiswa, I saw your post. its cool. Will it work if we have ScriptManager in that page? In that case you have to use ScriptManager insted of ClientScript. You may add this section also on that post. Thanks !
cheers, Abhijit CodeProject MVP
Yes it will work. Will add it Thanks !
Vuyiswa Maseko, Few companies that installed computers to reduce the employment of clerks have realized their expectations.... They now need more and more expensive clerks even though they call them "Developers" or "Programmers." C#/VB.NET/ASP.NET/SQL7/2000/2005/2008 http://www.vuyiswamaseko.tiyaneProperties.co.za vuyiswa@its.co.za http://www.itsabacus.co.za/itsabacus/