Skip to content

Instantly share code, notes, and snippets.

View ekremgunes's full-sized avatar
:octocat:
Developing . . .

Ekrem Gunes ekremgunes

:octocat:
Developing . . .
View GitHub Profile
@ekremgunes
ekremgunes / ViewAlert.cs
Created February 11, 2023 17:31
ViewAlert
using Microsoft.AspNetCore.Mvc;
namespace ViewAlertApp.Extensions
{
public static class ControllerExtensions
{
//scripted by gunesekrem.com
public static string ViewAlert(this Controller controller, AlertType alert = AlertType.Info, string alertMessage = "Info")
{
if (alert == AlertType.Success)