Click here to Skip to main content
15,885,366 members
Articles / Web Development

WPF Two-way Databinding in ASP.NET - Enabling MVVM

Rate me:
Please Sign up or sign in to vote.
4.88/5 (35 votes)
29 Jan 2011CPOL21 min read 139.4K   66  
Bringing WPF like declarative data binding to ASP.NET Web Forms to enable declarative two-way data binding to any object whilst opening up MVVM UI development.
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CalculatedCommandCanExecute.aspx.cs" Inherits="SimpleBinding.Advanced.CalculatedCommandCanExecute" %>
<%@ Import Namespace="Binding" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
    <title></title>
    <link rel="Stylesheet" type="text/css" href="../styles.css" />  
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <fieldset>
            <legend>Calculated CanExecute Command Binding</legend>
            <span>
                The following button is bound to a command on the view model. When the button is clicked it changes the result of the
                ICommand.CanExecute so that the button is disabled.
            </span>
            <div>
                <asp:Button ID="btnDoSomething" runat="server" Text="Command Bound" OnClick='<%# sender.BindC("OnClick") %>' />
            </div>
        </fieldset>        
    </div>
    </form>
</body>
</html>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions