45 | What Is Session In ASP.NET Core 6 | Add Session | Use Session | Remove Session (Hindi/Urdu)

preview_player
Показать описание
#session
#statemanagement
#aspnetcore
#aspnetcore6
#aspnetcoremvc
#aspnetmvc
#tutorials
#hindi
#urdu

Рекомендации по теме
Комментарии
Автор

Divided By Borders, united by knowledge, Love from India :)

DeoRaj-jd
Автор

Sir, please make video on identity, authentication and authorization, sir one thing please upload at least 2 video per day, I observed your .NET core video most viewed other than other course so please give priority on .NET core video, btw ❤

developer
Автор

sir knows very well that the students are mostly from India, so Sir is using examples specific to India most of times like Hyderbada, Utrakhand..etc

hemantkumar
Автор

Very Good Explained !! I request you to try to make a video in which you'll implement all this concept like database connection, session, identity etc. by creating a real-world web application.

Thanks for all the efforts you put in to create all these videos 🙏🏻❤

Love from India 🇮🇳

AshishInglePersonal
Автор

Sir G you are best. I am always watching your channel and salute your hard work
i have been following you since 2021

irealabdullah
Автор

CRUD operation are most important when we go for interview anywhere we always find this question.

moterslovers
Автор

like in Authorization and Authentication, how to use Http Status Codes and Tokens!

muhammadhaseeb
Автор

plzzz add one more video of Dependency Injection

ease-tech
Автор

Sirji aapne kaha ki Sessions are specific to browser toh sirf chrome ka session chrome tak hi rahega toh aapne jab example dikhaya tha toh edge me kaise kya access hua session? Agar woh browser specific hai toh sirf chrome me dikhana chahiye tha na edge pe kyu dikhaya?

ramkharche
Автор

Good explanation, I have questions here, session we used in my project but problem is that session value lost frequently once we deploy on server but it is not happening locally?

tajuddinidrisi
Автор

sir .net core mvc ka live project bania please

abdulkarim
Автор

Sir make the video on Tokens and Http Status Codes ! How to use and configure for requests and responses!

muhammadhaseeb
Автор

Ap ne ye ni bataya k session ki value class me kese set krwa sakte hn.

alumerstore
Автор

There is another method to access session data directly in the view

If we store session variables in new class and in view we can just directly get that data from class

ahmedmujtaba
Автор

Sir is mai cookies be add krye ga or different role p different screen

khubaibirfan
Автор

Sir in last video you discussed CRUD operation by using controller and this was generated a bunch of code automatically. So I have doubt, can we perform CRUD operation manually?

moterslovers
Автор

hi
please make video of singleton, trident and scoped

RajeevKumar-srqt
Автор

@sir please make a video about addsingleton vs addscoped vs addtransient. Please

faizanshaikh
Автор

brother kuch important project suggest kro 😍

unbelievableboy
Автор

How can we redirect to login page on session expire in asp.net core? In asp .net mvc, I created Session Expiry Attribute and used in controller

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;

namespace Infrastructure.Security
{
public class SessionExpireAttribute : ActionFilterAttribute
{
public override void filterContext)
{
HttpContext ctx = HttpContext.Current;

// check sessions here
if == 0 || == null)
{

filterContext.Result = new RedirectToRouteResult(new RouteValueDictionary
{
{ "action", "Index" },
{ "controller", "Account" },
{ "returnUrl",
});
//filterContext.Result = new
return;
}


}
}
}

rashidbutt