Ir al contenido principal

Entradas

Destacados

Configuring session state

Open the Startup.cs file and add the following statements to the end of the ConfigureServices method, after the call to the AddMvc method: services.AddCaching(); services.AddSession(options => { options.CookieName = ".Packt.QuizWebApp"; options.IdleTimeout = TimeSpan.FromMinutes(10); }); Add the following statements to the end of the Configure method, before and after the call to the UseMvc method, to use the session state and to populate the sample questions: app.UseSession(); // must be added before MVC app.UseMvc(routes => { routes.MapRoute( name: "default", template: "{controller=Home}/{action=Index}/{id?}"); }); app.UseSampleQuestions(env.MapPath("")); // pass the path to the wwwroot directory

Entradas más recientes

Installing Visual Studio Code and ASP.NET Core

Compiling code using the Developer Command Prompt

Installing Microsoft Visual Studio 2015

Microsoft Outlook 2010, problema al enviar correos con el teclado: aparecen caracteres raros y no reconoce la ñ, ni tildes

JQuery Validation in MVC 5, Visual Studio 2015

Angular JS - Trabajando con multiples APP (module) en una misma página

Trabajando con Progress Bar (Barras de proceso)

Utilizar un TreeView en vez del clásico JsTree de Jquery

Creating and Using a Helper in an ASP.NET Web Pages (Razor) Site

Añadir al cronómetro con memoria una lista debajo de los botones, que muestre los instantes en que el cronómetro ha parado de contar.