Pradeep Rawat

Pradeep Rawat

  • NA
  • 286
  • 7.3k

While your code is being executed, how to interact with UI

Jul 29 2021 5:57 AM
protected void btnSaveV_Click(object sender, EventArgs e)
{
    main1();
}

public void main1()
{
    main2();
}

public void main2()
{
    main1();
}

After click on stop button want to stop this nested method looping--unable to interact because may be "While your code is being executed, the user cannot interact with your user interface.". please how to resolve it.


Answers (1)