Global Assembly Cache (GAC)
10:57
3 жыл бұрын
Layout en MVC
25:41
3 жыл бұрын
¿La gente de sistemas son gordos?
11:07
Пікірлер
@SkyTsuki
@SkyTsuki 20 күн бұрын
No me sale la clase :c
@marcelopintadocardenas8110
@marcelopintadocardenas8110 8 ай бұрын
Son buenos tus videos, pero te recomiendo que mantengas el secuencial. Hasta el 5 ibas bien, luego te abristes
@jam18m
@jam18m 9 ай бұрын
GetPersonas.cshtml @using WebApplication.Models @model List<Persona> @{ Layout = null; } <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width" /> <title>Index</title> </head> <body> <table style="width:100%; border-spacing:20px;"> <tr> <td colspan="2" style="width:100%; text-align:center; background-color:beige;"> <h1>NET Monkeys</h1> </td> </tr> <tr> <td style="width:20%; text-align:center; vertical-align:top; background-color:antiquewhite; height:200px;......."> <h1>Menu</h1> <o1 style="text-align:left; font-family:Calibri; font-size:14px;"> <li>@Html.ActionLink("Inicio","Index")</li> <li>@Html.ActionLink("Personas","GetPersonas")</li> <li>@Html.actionLink("Personas en tres tablas", "GetPersonasTresTablas")</li> <li>@Html.actionLink("Personas y productos", "GetPersonasProductos")</li> <li>@Html.actionLink("Personas, productos y paises", "GetPersonasProductosPaises", "SelectFTGDos")</li> </ol> </td> <td style="width:80%; text-align:left; vertical-align:top;"> <h1>Personas</h1> <h3> La cantidad de personas son: @Model.Count() </h3> <table style="width:100%;"> <tr> <tr style="width:25%;">ID</tr> <tr style="width:25%;">NOMBRE</tr> <tr style="width:25%;">EDAD</tr> <tr style="width:25%;">SEXO</tr> </tr> @foreach (Persona p in Model) { <tr> <td style="width:25%;">@p.Id</td> <td style="width:25%;">@p.Nombre</td> <td style="width:25%;">@p.Edad</td> <td style="width:25%;">@p.Sexo</td> </tr> } </table> </td> </tr> </table> </body> </html>
@jam18m
@jam18m 9 ай бұрын
Persona.cs using system; using system.Collections.Generic; using system.Linq; using system.Web; //namespace WebApplication.Models namespace WebApplication.Models.Otro { public class Persona { //public Persona() //{ // Nombre = ""; // Sexo = ""; //} // //public Persona(int id) //{ // Id = id; //} public int Id { get; set; } public string Nombre { get; set; } public int Edad { get; set; } public string Sexo { get; set; } } }
@jam18m
@jam18m 9 ай бұрын
GetPersonasTresTablas.cshtml @using WebApplication.Models @model List<Persona> @{ Layout = null; } <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width" /> <title>Index</title> </head> <body> <table style="width:100%; border-spacing:20px;"> <tr> <td colspan="2" style="width:100%; text-align:center; background-color:beige;"> <h1>NET Monkey</h1> </td> </tr> <tr> <td style="width:20%; text-align:center; vertical-align:top; background-color:antiquewhite; height:200px;"> <h1>Menu</h1> <o1 style="text-align:left; font-family:Calibri; font-size:14px;"> <li>@Html.ActionLink("Inicio","Index")</li> <li>@Html.ActionLink("Personas","GetPersonas")</li> <li>@Html.ActionLink("Personas en tres tablas","GetPersonasTresTabkas")</li> <li>@Html.ActionLink("Personas y productos","GetPersonasProductos")</li> <li>@Html.ActionLink("Personas, productos y paises","GetPersonasProductosPaises","SelectFTGDos")</li> </o1> </td> <td style="width:80% text-align:left; vertical-align:top;"> <h1>Personas en tres tablas</h1> <h3> La cantidad de personas son: @Model.Count() </h3> <table style="width:100%;"> <tr> <tr style="width:25%;">ID</tr> <tr style="width:25%;">NOMBRE</tr> <tr style="width:25%;">EDAD</tr> <tr style="width:25%;">SEXO</tr> </tr> @foreach (Persona p in Model.Where()) { <tr> <td style="width:25%;">@p.Id</td> <td style="width:25%;">@p.Nombre</td> <td style="width:25%;">@p.Edad</td> <td style="width:25%;">@p.Sexo</td> </tr> } </table> <hr /> <h3> La cantidad de personas femeninas son: @Model.Count(x => x.Sexo == "femenino") </h3> <table style="width:100%;"> <tr> <tr style="width:25%;">ID</tr> <tr style="width:25%;">NOMBRE</tr> <tr style="width:25%;">EDAD</tr> <tr style="width:25%;">SEXO</tr> </tr> @foreach (Persona p in Model.Where(x => x.Sexo == "femenino")) { <tr> <td style="width:25%;">@p.Id</td> <td style="width:25%;">@p.Nombre</td> <td style="width:25%;">@p.Edad</td> <td style="width:25%;">@p.Sexo</td> </tr> } </table> <hr /> <h3> La cantidad de personas masculinas son: @Model.Count(x => x.Sexo == "masculino") </h3> <table style="width:100%;"> <tr> <tr style="width:25%;">ID</tr> <tr style="width:25%;">NOMBRE</tr> <tr style="width:25%;">EDAD</tr> <tr style="width:25%;">SEXO</tr> </tr> @foreach (Persona p in Model.Where(x => x.Sexo == "masculino")) { <tr> <td style="width:25%;">@p.Id</td> <td style="width:25%;">@p.Nombre</td> <td style="width:25%;">@p.Edad</td> <td style="width:25%;">@p.Sexo</td> </tr> } </table> </td> </tr> </table> </body> </html>
@jam18m
@jam18m 9 ай бұрын
Index.cshtml } <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-widtg" /> <title>Index</title> </head> <body> <table style="width:100%; border-spacing:20px;"> <tr> <td colspan="2" style ="width:100%; text-align:center; background-color:beige;"> <h1>NET Monkeys</h1> </td> </tr> <tr> <td style="width:20%; text-align:center; vertical-align:top; background-color:antiquewhite; height:200px;"> <h1>Menu</h1> <o1 style="text-align:left; font-family:Calibri; font-size:14px;"> <li>@Html.ActionLink("Inicio", "Index")</li> <li>@Html.ActionLink("Personas", "GetPersonas")</li> <li>@Html.ActionLink("Personas en tres tablas", "GetPersonasTresTablas")</li> <li>@Html.ActionLink("Personas y productos", "GetPersonasProductos")</li> <li>@Html.ActionLink("Personas, productos y paises", "GetPersonasProductosPaises","SelectFTGDos")</li> </o1> </td> <td style="width:80%; text-align:left; vertical-align:top;"> <h1> El objetivo de la practica es... </h1> <h3> Enlazar multiples conjuntos de resultados en una vista, asi mostrar multiples tablas de una sola lista de datos </h3> <img style="width:300px;" src="~/Imagenes/TransNetMonkeyStudent.png" /> </td> </tr> </table> </body> </html>
@jam18m
@jam18m 9 ай бұрын
Persona.cs using system.collections.Generic; using system.Linq; using system.Web; namespace WebApplication.Models { public class Persona { public int Id { get; set; } public string Nombre { get; set; } public int Edad { get; set; } public string Sexo { get; set; } } }
@jam18m
@jam18m 9 ай бұрын
GetPersonasTresTablas.cshtml @using WebApplication.Models @model List<Persona> @{ Layout = null; } <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width" /> <title>Index</title> </head> <body> <table style="width:100%; border-spacing:20px;"> <tr> <td colspan="2" style="width:100%; text-align:center; background-color:beige;"> <h1>NET Monkey</h1> </td> </tr> <tr> <td style="width:20%; text-align:center; vertical-align:top; background-color:antiquewhite; height:200px;"> <h1>Menu</h1> <o1 style="text-align:left; font-family:Calibri; font-size:14px;"> <li>@Html.ActionLink("Inicio","Index")</li> <li>@Html.ActionLink("Personas","GetPersonas")</li> <li>@Html.ActionLink("Personas en tres tablas","GetPersonasTresTabkas")</li> <li>@Html.ActionLink("Personas y productos","GetPersonasProductos")</li> <li>@Html.ActionLink("Personas, productos y paises","GetPersonasProductosPaises","SelectFTGDos")</li> </o1> </td> <td style="width:80% text-align:left; vertical-align:top;"> <h1>Personas en tres tablas</h1> <h3> La cantidad de personas son: @Model.Count() </h3> <table style="width:100%;"> <tr> <tr style="width:25%;">ID</tr> <tr style="width:25%;">NOMBRE</tr> <tr style="width:25%;">EDAD</tr> <tr style="width:25%;">SEXO</tr> </tr> @foreach (Persona p in Model.Where()) { <tr> <td style="width:25%;">@p.Id</td> <td style="width:25%;">@p.Nombre</td> <td style="width:25%;">@p.Edad</td> <td style="width:25%;">@p.Sexo</td> </tr> } </table> <hr /> <h3> La cantidad de personas femeninas son: @Model.Count(x => x.Sexo == "femenino") </h3> <table style="width:100%;"> <tr> <tr style="width:25%;">ID</tr> <tr style="width:25%;">NOMBRE</tr> <tr style="width:25%;">EDAD</tr> <tr style="width:25%;">SEXO</tr> </tr> @foreach (Persona p in Model.Where(x => x.Sexo == "femenino")) { <tr> <td style="width:25%;">@p.Id</td> <td style="width:25%;">@p.Nombre</td> <td style="width:25%;">@p.Edad</td> <td style="width:25%;">@p.Sexo</td> </tr> } </table> <hr /> <h3> La cantidad de personas masculinas son: @Model.Count(x => x.Sexo == "masculino") </h3> <table style="width:100%;"> <tr> <tr style="width:25%;">ID</tr> <tr style="width:25%;">NOMBRE</tr> <tr style="width:25%;">EDAD</tr> <tr style="width:25%;">SEXO</tr> </tr> @foreach (Persona p in Model.Where(x => x.Sexo == "masculino")) { <tr> <td style="width:25%;">@p.Id</td> <td style="width:25%;">@p.Nombre</td> <td style="width:25%;">@p.Edad</td> <td style="width:25%;">@p.Sexo</td> </tr> } </table> </td> </tr> </table> </body> </html>
@jam18m
@jam18m 9 ай бұрын
Index.cshtml } <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-widtg" /> <title>Index</title> </head> <body> <table style="width:100%; border-spacing:20px;"> <tr> <td colspan="2" style ="width:100%; text-align:center; background-color:beige;"> <h1>NET Monkeys</h1> </td> </tr> <tr> <td style="width:20%; text-align:center; vertical-align:top; background-color:antiquewhite; height:200px;"> <h1>Menu</h1> <o1 style="text-align:left; font-family:Calibri; font-size:14px;"> <li>@Html.ActionLink("Inicio", "Index")</li> <li>@Html.ActionLink("Personas", "GetPersonas")</li> <li>@Html.ActionLink("Personas en tres tablas", "GetPersonasTresTablas")</li> <li>@Html.ActionLink("Personas y productos", "GetPersonasProductos")</li> <li>@Html.ActionLink("Personas, productos y paises", "GetPersonasProductosPaises","SelectFTGDos")</li> </o1> </td> <td style="width:80%; text-align:left; vertical-align:top;"> <h1> El objetivo de la practica es... </h1> <h3> Enlazar multiples conjuntos de resultados en una vista, asi mostrar multiples tablas de una sola lista de datos </h3> <img style="width:300px;" src="~/Imagenes/TransNetMonkeyStudent.png" /> </td> </tr> </table> </body> </html>
@jam18m
@jam18m 9 ай бұрын
MisExtensiones.cs using System; using System.collections.Generic; using System.Linq; using System.Web; namespace System { public static class MisExtensiones { public static DateTime ToDateTimeMexico(this DateTime data) { string mx = "Central Standard Time (Mexico)"; TimeZoneInfo mxTimeZone = TimeZoneInfo.FindSystemTimeZoneById(mx); DateTime mxDateTime = TimeZoneInfo.ConvertTimeFromUtc(data, mxTimeZone); retunr mxDateTime; //retunr data.AddYears(10); } } }
@jam18m
@jam18m 9 ай бұрын
Index.cdhtml @using WebApplication.Models @model List<Ejemplo003> @{ Layout = null; } <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width" /> <title>Index</title> </head> <body> <table style="width:100%; border-spacing:20px;"> <tr> <td style="width:50%; text-align:center; vertical-align:top; border-bottom:1px solid black;"> <h1>NET Monkeys</h1> </td> <td style="width:50%; text-align:right; vertical-align:bottom; border-bottom:1px solid black;"> @if (TempData["MSG_ERROR"] != null) { <span style="color:red; font-family:Calibri; font-size:20px;"> @TempData["MSG_ERROR"].ToString() </span> } @if (TempData["MSG"] != null) { <span style="color:green; font-family:Calibri; font-size:90px;"> @TempData["MSG"].ToString() </span> } </td> </tr> <tr> <td style="width:50%; text-align:center; vertical-align:top; background-color:antiquewhite;"> <h1>MOSTRAR PERSONAS</h1> <table style="width:100%;"> <tr style="font-weight:bold;"> <td>Nombre</td> <td>Sueldo</td> <td>Estatus</td> <td>Nacimiento</td> <td>Edad</td> <td>Editar</td> <td>Eliminar</td> </tr> @foreach (Ejemplo003 e in Model) { <tr> <td>@e.Nombre @e.Apellido</td> <td>@e.Sueldo.ToString("C")</td> <td>@eHtml.CheckBox("xxx",e.Estatus,new{ disabled="disabled" })</td> <td>@e.FechaNacimiento.ToShortDateString()</td> <td>@e.Edad</td> <td>@Html.ActionLink("Editar","Editar", new { id = e.Id })</td> <td>@Html.ActionLink("Eliminar","Eliminar", new { id = e.Id })</td> </tr> } </table> </td> <td style="width:50%; text-align:left; vertical-align:top;"> <h1>AGREGAR PERSONA</h1> </td> </tr> </table> </body>
@jam18m
@jam18m 9 ай бұрын
EmployeeBusinessLayer.cS using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Configuration; using System.Data; using System.Data.SqlClient; namespace BusinessLayer { public class EmployeeBusinessLayer { public IEnumerable<Employee> Employees... public void AddEmployee(Employee employee)... public void SaveEmployee(Employee employee)... public void DeleteEmployee(int id) { string connectionString = configurationManager.ConnectionStrings["DBCS"].ConnectionString; using (sqlConnection con = new sqlConnection(connectionString)) { sqlCommand cmd = new sqlCommand("spDeleteEmployee", con); cmd.CommandType = CommandType.StoredProcedure; SqlParametrer paramId = new SqlParameter(); paramId.ParameterName = "@Id"; paramId.Value = id; cmd.Parameters.Add(paramId); con.Open(); cms.ExecuteNonQuery(); } } } }
@jam18m
@jam18m 9 ай бұрын
EmployeeController.cs using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using BusinessLayer; namespace MVDemo.Controllers { public class EmployeeController : Controller { public ActionResult Index() { EmployeeBusinessLayer employeeBusinessLayer = new EmployeeBusinessLayer(); List<Employee> employees = employeeBusinessLayer.Employees.ToList(); return View(employees); } [HttpGet] [ActionName("Create")] public ActionResult Create_Get() { retunr View(); } } } ================== EmployeeBusinessLayer employeeBusinessLayer = new EmployeeBusinessLayer(); employeeBusinessLayer.AddEmployee(employee); return RedirectToAction("Index"); } return View(); } public ActionResult Delete(ind id) { EmployeeBusinessLayer employeeBusinessLayer = new EmployeeBusinessLayer(); employeeBusinessLayer.DeleteEmployee(id); return RedirectToAction("Index") } } }
@jam18m
@jam18m 9 ай бұрын
MostrarPersona_Get.cshtml @using System.data @model DataTable @{ Layout = null; } <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width" /> <head> <body> <table style="margin:auto; width:500px;""> <tr> <td> <h1>Mostrar Persona001</h1> @Html.ActionLink("Agregar", "AgregarPersona001_Get") </td> </tr> </table> <table style="border:1px solid black;margin:auto; width:500px;"> //<tr> // <td style="width:25%;">ID</td> // <td style="width:25%;">NOMBRE</td> // <td style="width:25%;">PATERNO</td> // <td style="width:25%;">MATERNO</td> //</tr> <tr> <td style="width:20%;">ID</td> <td style="width:20%;">NOMBRE</td> <td style="width:20%;">PATERNO</td> <td style="width:20%;">MATERNO</td> <td style="width:20%;"></td> </tr> @foreach (DataRow r in Model.Rows) { <tr> //<td style="width:25%;"> // @Convert.ToString(r["Id"]) //</td> //<td style="width:25%;"> // @Convert.ToString(r["Nombre"]) //</td> //<td style="width:25%;"> // @Convert.ToString(r["Paterno"]) //</td> //<td style="width:25%;"> // @Convert.ToString(r["Materno"]) //</td> <td style="width:20%;">@Convert.ToString(r["Id"])</td> <td style="width:20%;">@Convert.ToString(r["Nombre"])</td> <td style="width:20%;">@Convert.ToString(r["Paterno"])</td> <td style="width:20%;">@Convert.ToString(r["Materno"])</td> <td style="width:20%;"> @Html.ActionLink("Eliminar", "EliminarPersona001_Get", new { id = Convert.ToString(r["Id"]) }) </td> </tr> } </table>
@jam18m
@jam18m 9 ай бұрын
EliminarPersona001_Get.cshtml @using System.Data @model DataRow @{ Layout = null; } <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width" /> <title>EliminarPersona001_Get</title> <head> <body> <h2>¿Estas seguro de eliminar la persona con el nombre:</h2> <h4> @Model["NombreCompleto"].ToString() </h4> @using (Html.BeginForm("EliminarPersona001_Post", "Home")) { //<span>luis</span> @Html.Hidden("id", @Model["id"].ToString()) @Html.Hidden("nombreCompleto", @Model["NombreCompleto"].ToString()) <input type="submit"> value="Eliminar Persona" /> } </body> </html>
@jam18m
@jam18m 9 ай бұрын
kzbin.info/www/bejne/Y6HdoWWuobN-qZI ¿Qué es el Web.config en MVC? ConnectionStrings, appSettings kzbin.info/www/bejne/pKPRYXlrdsx7ibc Solo es la Intro - Práctica 3 Mostrar dos listas genéricas (SQL Server) en una vista MVC C# kzbin.info/www/bejne/o5KmaJKVoL5rrMU entendible MVC - Diferencia entre TempData, ViewData y ViewBag kzbin.info/www/bejne/mYPNe3SifdSijKs Nuestra mayor debilidad radica en renunciar a nuestros sueños! La forma mas segura de tener exito, es intentarlo una y mil veces mas! Qué es SignalR? kzbin.info/www/bejne/hJ-ogJqZZb1pqZI SignalR - Creación de chat en ASP.NET MVC kzbin.info/www/bejne/mp7ZgJJnl6iKpLs Eliminar datos en SQL Server desde MVC 5 - C# kzbin.info/www/bejne/r5SYc4ppna-LnNE localhost:41855/Home/Chat localhost:41855/Home/Chat
@jam18m
@jam18m 9 ай бұрын
HomeController.cs public class HomeController : Controller { public ActionResult MostrarPersona001_Get() { try { #region Obtner DataTable de SQL Server - Persona001 string cadena = "Server=(local);Database=Luis;User Id=sa;Password=12345;"; sqlConnection con = new sqlConnection(cadena); string sentencia = "SELECT Id, Nombre, Paterno, Materno FROM Persona001"; sqlDataAdapter da = new sqlDataAdapter(sentencia, con); DataTable dt = new DataTable(); da.Fill(dt); #endregion TempData["MSG"] = "Estos son todos los registros de la tabla Persona001"; return View(dt); } { TempData["ERROR"] = ex.Message; DataTable dt = new DataTable(); return view(dt); } public ActionResult MostrarPersona001_Get() public ActionResult MostrarPersona001_Get() --================================= public ActionResult AgregarPersona001_POST(string nomb, string pate, string mate)... { try { #region Agregar a SQL Server string cadena = "Server=(local);Database=Luis;User Id=sa;Password=12345;"; sqlConnection son = new sqlConnection(cadena); string sentencia = string.Format("INSERT INTO Persona001 (Nombre, Paterno, Materno) VALUES ('{0}','{1}','{2}')");********* sqlCommand comando = new sqlCommand(sentencia, con); con.Open(); int cantidadFilasAfectadas = comando.ExecuteNonQuery(); --================================= public ActionResult EliminarPersona001_Get(string id) { try { #region Obtener DataRow de SQL Server - Persona001 por id sqlConnection conexion = new sqlConnection("Server=(local);Database=Luis;User Id=sa;Password=12345;"); string sentencia = "SELECTId, Nombre, Paterno, Materno, Nombre + ' ' + Paterno + ' ' + Materno as NombreCompleto FROM Persona001 WHERE Id = " + id; sqlDataAdapter da = new sqlDataAdapter(sentencia, conexion); DataTable dt = new DataTable("Persona001PorId"); da.Fill(dt); DataRow r = dt.Rows[0]; #endregion return View(r); } catch (Exception ex) { TempData["ERROR"] = ex.Message; return RedirectToAction("MostrarPersona001_Get"); } public ActionResult EliminarPersona001_Post(string id, string nombreCompleto) { try { #region Eliminar a SQL Server string cadena = "Server=(local);Database=Luis;User Id=sa;Password=12345" sqlConnection con = new sqlConnection(cadena); string sentencia = string.Format("DELETE FROM Persona001 WHERE ID = {0}", id); sqlCommand comando = new sqlCommand(sentencia, con); con.Open(); int cantidadFilasAfectadas = comando.ExecuteNonQuery(); con.Close(); #endregion TempData["ERROR"] = string.Format("La persona se elimino del sistema: {0}", nombreCompleto); return RedirectToAction("MostrarPersona001_Get"); } catch (Exception ex) { TempData["ERROR"] = ex.Message; return RedirectToAction("MostrarPersona001_Get", new { id = id }); } } } }
@jam18m
@jam18m 9 ай бұрын
<!--Script references. --> <!--The jQuery library is required and is referenced by default in _Layout.cshtml. --> <!--Reference the SignalR library. --> <script src="~/Scripts/jquery.signalR-2.1.0.min.js"></script> <!--Reference the autogenerated SignalR hub script. --> <script src="~/signalr/hubs"></script> <!--SignalR script to update the chat page and send message. --> <script> $(function() { // Reference the auto-generated proxy for the hub. var chat = $.connection.chatHub; // Create a function that the hub can call back to display messages. chat.client.addNewMessageToPage = function (name, message) { // Add the message to the page. $('#discussion').append('<li><strong>' + htmlEncode(name) + '</strong>: ' + htmlEncode(message) + '</li>'); }; // Set initial focus to message input box. $('#message').focus(); // Start the connection. $.connection.hub.start().done(function () { $('#sendmessage').click(function() { // Call the Send method on the hub. chat.server.send($('#displayname').val(), $('#message').val()); // Clear text box and reset focus for next comment. $('#message').val('').focus(); }); }); }); // This optional function html-encodes messages for display in the page. function htmlEncode(value) { var encodedValue = $('<div />').text(value).html(); return encodedValue; } </script>
@jam18m
@jam18m 9 ай бұрын
y todo ese codigo que estas copiando en el minuto 3.48 de donde lo saco o copio
@jam18m
@jam18m 9 ай бұрын
<!--Script references. --> <!--The jQuery library is required and is referenced by default in _Layout.cshtml. --> <!--Reference the SignalR library. --> <script src="~/Scripts/jquery.signalR-2.1.0.min.js"></script> <!--Reference the autogenerated SignalR hub script. --> <script src="~/signalr/hubs"></script> <!--SignalR script to update the chat page and send message. --> <script> $(function() { // Reference the auto-generated proxy for the hub. var chat = $.connection.chatHub; // Create a function that the hub can call back to display messages. chat.client.addNewMessageToPage = function (name, message) { // Add the message to the page. $('#discussion').append('<li><strong>' + htmlEncode(name) + '</strong>: ' + htmlEncode(message) + '</li>'); }; // Set initial focus to message input box. $('#message').focus(); // Start the connection. $.connection.hub.start().done(function () { $('#sendmessage').click(function() { // Call the Send method on the hub. chat.server.send($('#displayname').val(), $('#message').val()); // Clear text box and reset focus for next comment. $('#message').val('').focus(); }); }); }); // This optional function html-encodes messages for display in the page. function htmlEncode(value) { var encodedValue = $('<div />').text(value).html(); return encodedValue; } </script>
@angelcasanchez7229
@angelcasanchez7229 Жыл бұрын
Buenos consejos
@salserodezinc5532
@salserodezinc5532 Жыл бұрын
Y como hacer que el usuario mediante el login se conecte a una base de datos especifica para cada cliente?
@matsoft.oficial
@matsoft.oficial Жыл бұрын
Muy breve y directo al grano... gracias por tu presentación...
@JuanZerulJR
@JuanZerulJR Жыл бұрын
Muy buena Explicacion. Sin embargo estoy trabajando en un proyecto donde Reescribieron el Archivo ConfigurationManager. y no puedo acceder un Archivo de configuracion :( existe otra manera de acceder a estos archivos estoy trabajando en un proyecto MVC con Razor. Saludos
@TheErudito
@TheErudito Жыл бұрын
Q es mejor blazor o asp mvc la verdad estoy aprendiendo blazor y me gusta
@brayan_act
@brayan_act Жыл бұрын
Gracias, eres un crack.
@ottoe8070
@ottoe8070 Жыл бұрын
Hola, muy buen tutorial, soy nuevo en esto, me gustaria saber como hacer lo mismo pero mostrando el Id en una caja de texto. gracias.
@omarlopez7740
@omarlopez7740 Жыл бұрын
La mejor explicación que es visto, duérmete mis 4 años de .Net
@manuele.varelarodrigez1893
@manuele.varelarodrigez1893 2 жыл бұрын
espectacular tu explicación. Gracias
@pabloaseijas
@pabloaseijas 2 жыл бұрын
¿cómo se haría en el caso de de un insert con select?
@nicolasdiaz827
@nicolasdiaz827 2 жыл бұрын
como puedo hacer para que aparezca la tabla cuando yo aprete buscar ?
@nicolasdiaz827
@nicolasdiaz827 2 жыл бұрын
hola como puedo hacer para que aparezca cuando apretó un button ?
@fannyacosta2264
@fannyacosta2264 2 жыл бұрын
Que bueno ver que estas de vuelta, te aprendo demasiado.
@marcelabanega5534
@marcelabanega5534 2 жыл бұрын
Me funcionó, justo lo que necesitaba. Muchas gracias por el vídeo! Le cambié un poco el estilo a como a mí me gusta y quedó de 10
@brunodiazbat
@brunodiazbat 2 жыл бұрын
Muchas gracias, me ayudo muchisimo.
@lauramariajaimemiranda4454
@lauramariajaimemiranda4454 2 жыл бұрын
Excelente explicación, muchas gracias
@franciscohilariomartinezde5058
@franciscohilariomartinezde5058 2 жыл бұрын
Yo hago todo eso Pero no me sale la consola y al iniciar en servicios el de administrador iis. Dice error 2. Algún consejo?
@Mata-ft3rq
@Mata-ft3rq 2 жыл бұрын
tuve que adaptarlo y cambiarlo un poco pero muchas gracias me funciono al 100
@tommycontreras6825
@tommycontreras6825 2 жыл бұрын
Me funcionó🤩🤩
@sergiosoto9442
@sergiosoto9442 2 жыл бұрын
Gracias Amigo!!!
@MrJodelom
@MrJodelom 2 жыл бұрын
Felicidades!!!, me gusto mucho, tienes mucha pedagogia, explicas cada detalle.
@julianruiz699
@julianruiz699 2 жыл бұрын
Estoy usando visual code 2017 y no me sirve al final me queda el error del final dice que no hay ningún elemento mySelect en el viewbag
@SrIs-44c
@SrIs-44c 2 жыл бұрын
Hi! Aqui a mitad del 2022 con su excelente instruccion. Sirve a mil, compa ✋
@krashangel8312
@krashangel8312 2 жыл бұрын
una pregunta, se puede agregar un if para que si algunos datos tienen algun dato en especifico lo muestre de cierto color de fondo y si no lo tiene muestre otro color en el mismo dropdownlist?
@giampiereleonescriba9734
@giampiereleonescriba9734 2 жыл бұрын
Bro esta bueno tus conceptos pero siento que corres mucho a la hora de explicar y uno no puede entender y se vuelve tedioso, pero como te repito tienes buenos conceptos, solo mejora eso.
@ericalvarezbaltierr
@ericalvarezbaltierr 2 жыл бұрын
explicas muy bien, Felicidades compañero.
@gabrielarolon8416
@gabrielarolon8416 2 жыл бұрын
Muchas gracias!!! Me ayudó bastante el vídeo.
@fernandocastalleda770
@fernandocastalleda770 2 жыл бұрын
E we pasame el bloc de notas por fa es que una maestra quiere que hagamos algo parecido...
@juancarlosramirez5146
@juancarlosramirez5146 2 жыл бұрын
Amigo, no se te entiende nada. Tienes facilidad para hacer las cosas muy complicadas.
@LuisGabrielFabres
@LuisGabrielFabres 2 жыл бұрын
creo que el que tiene facilidad para no entender eres tu.. yo entendí clarito todo lo que explicaron... quizá tienes fallas en conceptos básicos de c#, o de html..
@victorvictoriano8873
@victorvictoriano8873 2 жыл бұрын
genial video, es como las master pages de web forms.