Avatar of ITsolutionWizard
ITsolutionWizard
Flag for United States of America

asked on 

local storage to MVC

i have mvc web form and create  localStorage.getItem("member-id") after the login/password is checked and valided.
how can i drop  localStorage.getItem("member-id") value to mvc controller?


public PartialViewResult RenderDashboardLeadList()
{
    string currentStage = Request.QueryString["Stage"];
    if (currentStage == null)
    {
        currentStage = "Open";
    }
    return PartialView(mh.EventLeadList(currentStage,"localstorage?"));
}

Open in new window

.NET MVCC#jQuery

Avatar of undefined
Last Comment
Stephan

8/22/2022 - Mon