Amigos, les cuento que tengo una aplicacion en ASP.NET MVC 4 RAZOR y mi pregunta es como puedo traer un mensaje por pantalla:
Por ejemplo en ASP.NET WEBFORMS tenia este javascript:
dialogAlert = function (obj, title, dialogText) {
$('body').append(String.Format("<div id='dialog' title='{0}'><p>{1}</p></div>", title, dialogText));
$('#dialog').dialog({
//height: 110,
//autoOpen: false,
modal: true,
resizable: false,
draggable: true,
close: function (event, ui) {
$("body").find("#dialog").remove();
},
buttons: {
"Aceptar": function () {
$(this).dialog("close");
if (obj) obj.click();
}
}
});
}
y desde la clase lo llamada con:
ClientScript.RegisterStartupScript(GetType(), "mostrarMensaje", "dialogAlert(this, 'Editar', 'El campo Descripción es obligatorio');", true);
Pero en mvc razor no se puede llamar de esta forma, alguien me puede ayudar por favor??, gracias.