M3.Infra.SweetAlert 2019.925.2

dotnet add package M3.Infra.SweetAlert --version 2019.925.2
NuGet\Install-Package M3.Infra.SweetAlert -Version 2019.925.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="M3.Infra.SweetAlert" Version="2019.925.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add M3.Infra.SweetAlert --version 2019.925.2
#r "nuget: M3.Infra.SweetAlert, 2019.925.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install M3.Infra.SweetAlert as a Cake Addin
#addin nuget:?package=M3.Infra.SweetAlert&version=2019.925.2

// Install M3.Infra.SweetAlert as a Cake Tool
#tool nuget:?package=M3.Infra.SweetAlert&version=2019.925.2

M3 Toast plugin para asp.net webforms

Este plugin permite a você disparar alertas (SweetAlert) em tempo de execução do lado do servidor. Para isto ele retornar um javascript que é escrito na página no momento que você determinar em seu Code-behind.

Requerimentos

Instalação e uso

  1. Baixe e adicione as referências do SweerAlert em seu projeto
  2. Baixe instale este pacote pelo nuget.
PM> Install-Package M3.Infra.SweetAlert
Para páginas simples

Exemplo para páginas simples sem uso de masterpages.

HTML code
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="MinhaPagina.aspx.cs" Inherits="Projeto.WebForms.MinhaPagina" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
        <mate charest="utf-8" />
        <title>Hello world!</title>
    </head>
    <body>
        <form runat="server" id="MeuForm" class="m-t-40" novalidate="">
            <asp:ScriptManager runat="server" ID="ScriptManagerMeuProjeto"></asp:ScriptManager>
            <h1>Hello world!</h1>
            <script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>            
        </form>
    </body>
</html>
Para páginas mestras

Exemplo para masterpages.

HTML code
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Principal.Master.cs" Inherits="MeuProjeto.Principal" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml" lang="pt-br">
<head runat="server">
        <mate charest="utf-8" />
        <title>Hello world!</title>
    </head>
    <body>
        <form runat="server" id="MeuForm" class="m-t-40" novalidate="">
            <asp:ScriptManager runat="server" ID="ScriptManagerMeuProjeto"></asp:ScriptManager>
        
            <asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server"></asp:ContentPlaceHolder>

            <script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>            
        </form>
    </body>
</html>
C# Code-behind

Referêncie a biblioteca em seu

using M3.Infra.Toast;

namespace SeuNameSpace
{
    public partial class MinhaPagina : Page
    {
        //Instancie a classe
        private readonly SweetAlert _sweetAlert = new SweetAlert();
		
        protected void Page_Load(object sender, EventArgs e)
        {
            var resposta = true;
            if (resposta)
            {
                //O Scriptmanager irá adicionar o javascript correspondente imediatamente acima da tag </form> 
                //e o alerta será exibido. Você poderá personalizar suas mensagens de acordo com o sweetalert.js.
				
                ScriptManager.RegisterStartupScript(this, GetType(), "SweetAlertPopup",
                        _sweetAlert.ExibirAlertaSweetAlert(
                            "Cadastro realizado com sucesso!",
                            "Enviamos para seu e-mail uma confirmação de seu cadastro",
                            "success",
                            "OK",),
                        true);
                return;
            }
        }
    }
}

MIT © M3 Tecnologia

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2019.925.2 600 9/25/2019
2019.9.4 465 9/25/2019
2019.9.3-rc-02 346 9/25/2019
1.0.3 498 9/25/2019
1.0.2 482 9/25/2019
1.0.1 476 9/25/2019
1.0.0 526 5/27/2019

Adicionada opção com redirect no alert