| | |
alert/message box
Please support our ASP.NET advertiser: Intel Parallel Studio Home
![]() |
•
•
Join Date: Nov 2007
Posts: 24
Reputation:
Solved Threads: 0
Im using VS 2005 for web application.Im using message boxes but they are not working.i dont know what's the problem with my code.
my data is saved successfully but im not getting the alert.same is the case with cancel/exit button.Please help me.
ASP.NET Syntax (Toggle Plain Text)
if (drff.Read()) { Button_Assign.Attributes.Add("onclick", "javscript:alert('Data saved successfully.')"); } /*else { //Button_Assign.Attributes.Add("onclick", "javscript:alert('Data not saved.')"); }
my data is saved successfully but im not getting the alert.same is the case with cancel/exit button.Please help me.
what you have will not work because you are adding the onclick event after the button was already clicked. so after the page postsback you should get that alert when you press the button using your code.
use this.
this adds the alert to the page load, which is the place you want to add it.
use this.
ASP.NET Syntax (Toggle Plain Text)
if (drff.Read()) { ClientScript.RegisterStartupScript(typeof(string), "success", "alert('Data saved successfully.');", true); } else { ClientScript.RegisterStartupScript(typeof(string), "fail", "alert('Data not saved.');", true); }
this adds the alert to the page load, which is the place you want to add it.
![]() |
Similar Threads
- Send a text message to your phone from your site! (ColdFusion)
- Custom Message Box (Visual Basic 4 / 5 / 6)
- message box (ASP.NET)
- What is the equivalent code of MessageBox in ASP.Net? (ASP.NET)
- alert message (ASP.NET)
- sample message box. (ASP.NET)
- Messagebox (ASP.NET)
- message box (ASP.NET)
- Time Release Message Box (C)
Other Threads in the ASP.NET Forum
| Thread Tools | Search this Thread |
.net 2.0 activexcontrol advice ajax alltypeofvideos asp asp.net bc30451 bottomasp.net browser businesslogiclayer button c# c#gridviewcolumn checkbox click commonfunctions compatible confirmationcodegeneration content contenttype courier css dataaccesslayer database datagridview datagridviewcheckbox datalist deadlock development dgv dropdownlist dropdownmenu dynamically edit expose fill flash flv formatdecimal forms formview gridview homeedition iframe iis javascript jquery listbox login menu microsoft mono mouse mssql multistepregistration news numerical objects opera order panelmasterpagebuttoncontrols radio ratings registration reportemail rotatepage save schoolproject search security serializesmo.table silverlight smartcard smoobjects software sql-server sqlserver2005 suse textbox tracking unauthorized validation vb.net video videos virtualdirectory vista visual-studio visualstudio web webapplications webarchitecture webdevelopemnt webprogramming webservice xml xsl youareanotmemberofthedebuggerusers






