devxlogo

ShowMessageBox – Showing a client-side message box at the next page load

ShowMessageBox – Showing a client-side message box at the next page load

' Show a client-side message box at the next page load' Example:'    ShowMessageBox(Me, "Order successfully submitted!")Sub ShowMessageBox(ByVal webPage As System.Web.UI.Page, ByVal message As String)    ' replace ' with ', otherwise the resulting javascript may raise errors    message = message.Replace("'", "'")    ' create the script and add it to the page's response    Dim script As String = ""    If (Not webPage.IsStartupScriptRegistered("StartupAlert")) Then        webPage.RegisterStartupScript("StartupAlert", script)    End IfEnd Sub

See also  Why ChatGPT Is So Important Today
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist