How can we get the first data of a flash file in asp.net (C #) after sending two or three forms?

  • Our team is working on flash / Asp.net basket projects.
  • In our projects, we need to get the previous data of the flash file.
  • After submitting two or three forms, the flash file data of the first page is missing.
  • How can we maintain the data state of a flash file?
  • If any idea, please help our team complete this task.
+3
source share
1 answer

ASP.NET , , , -. . , , . , . , , . / .

//

[ "UserName" ] = txtUser.Text;

// null

    if (Session["UserName"] != null)

    {

        //Retrieving UserName from Session

        lblWelcome.Text = "Welcome : " + Session["UserName"];

    }

    else

    {

     //Do Something else

    }

ASP.Net

+2

Source: https://habr.com/ru/post/1747135/


All Articles