Two way databinding in ASP.NET

后端 未结 5 1032
离开以前
离开以前 2021-01-18 14:29

Let say that we have an object

class Entity
{
    public string ID {get; set;}
    public string Name {get; set;}
}

I want to bind properti

5条回答
  •  情话喂你
    2021-01-18 15:13

    I created a solution for this.

    https://www.codeproject.com/Articles/146078/WPF-Two-way-Databinding-in-ASP-NET-Enabling-MVVM

    or github:

    https://github.com/Recodify/mvvm-4-asp-webforms

提交回复
热议问题