Display Success Message Box in ASP.NET C#
NickName:daric_sapnu Ask DateTime:2016-06-02T16:18:29

Display Success Message Box in ASP.NET C#

How can I display messagebox with success logo in ASP.net, I can only display alert message box by using these code.

ClientScript.RegisterStartupScript(this.GetType(), "myalert", "alert('Please dont leave text boxes blank');",true); 

Many thanks.

Copyright Notice:Content Author:「daric_sapnu」,Reproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/37586308/display-success-message-box-in-asp-net-c-sharp

Answers
Purushottam Kumar 2017-12-07T11:55:43

MessageBox.Show(\"Successfully saved\", \" Student Record\", MessageBoxButtons.OK, MessageBoxIcon.Information);\n",


More about “Display Success Message Box in ASP.NET C#” related questions

Display Success Message Box in ASP.NET C#

How can I display messagebox with success logo in ASP.net, I can only display alert message box by using these code. ClientScript.RegisterStartupScript(this.GetType(), "myalert", "alert('Please dont

Show Detail

Message box in Asp.NET C#

How to display a 1056 character message in message box in asp.NET C#. Response.Write("<script>alert(' " + a + " ')</script>"); The above code just accepts 54 characters

Show Detail

Cannot display message box on dev server in asp.net

I have a code block that is supposed to display a windows style message box to the user in my asp.net application. The user performs an action on an asp.net page, that page then processes data on

Show Detail

ASP.NET manage Message Box position with multiple display screens

I have built a web application for users who normally use 2 display monitors. When the application browser is moved to the secondary screen, all message boxes continue to be displayed on the primary

Show Detail

Jquery to display success message in asp.net webforms

I have started using jquery in one of my new asp.net webform application... I want to display a success message after an insert on a button click event... Here is my link button.. <asp:LinkBut...

Show Detail

How to display an error message box in a web application asp.net c#

I have an ASP.NET web application, and I wanted to know how I could display an error message box when an exception is thrown. For example, try { do something ...

Show Detail

ASP.NET Web Application Message Box

In an asp.net windows forms application, in the C# code behind you can use: MessageBox.Show("Here is my message"); Is there any equivalent in a asp.net web application? Can I call something from...

Show Detail

Need Dialog/Message Box component for C# ASP.NET

I would like to find a good-looking implementation of C# / ASP.NET message/simple dialog box. It should: be generated when I call something like showDialogBox() in my code, whenever I need to sho...

Show Detail

Display message in a popup box

I am trying to display popup box using jquery showing a success message after updating the table row. This is code that I am trying : $.ajax({ type: "POST", url: "process.php", dat...

Show Detail

PHP display pop-up success message box using Codeigniter

I am try to display a pop-up success message box after a record is updated. Here is the codes I wrote in controller $status = $this->order_model->set_bookingByOrderID($id,$data); ...

Show Detail