AqDWeb : HomePage

HomePage :: Categories :: PageIndex :: Login/Register
Hosted on SourceForge since 2006/6/14
Latest Release: 0.9.1.1 | Download System Requirements: .NET Framework 2
Feature List:
  • Real two-way data binding, unlike the semi-complete one ASP.NET provides, it fully supports plain objects using OGNL.
  • NHibernate support, transaction and per-type interceptor
  • Integration the DotLucene search engine, managing incremental and non-blocking update.
  • Page-level HTTP request filter
  • Query parameter auto-injection and management

Home Page for AqDWeb

A framework to help you build web applications happily and rapidly in the modern style!

The modern style to build web apps:

1. You don't design a database - You make real model classes and let ORM take care of the rest:
[NHMA.Class]
public class User: PersistentEntity {
    [NHMA.Property(Length=200)]
    public string Name {
        set { _name = value; }
        get { return _name; }
    }
2. No More SQL:
public class UserListPage: ManagedPage {
    public IList<User> Users = null;
    protected override void OnDataBinding(EventArgs e) {
        Users = PersistentEntityBroker<User>.CreateCriteria()
            .Add(Expression.Like("Name", "Bob %")).List();
    }
    public string SaveUsers() {
        foreach (User usr in Users)
            PersistentEntityBroker<User>.Persist(usr);
    }
3. Full-automatic Two-way Data Binding:
<aqd:forEach runat="server" id="UserList"
    bind-source="Users" dataVarName="usr">

    <itemTemplate>
        User ${#usr.ID}:
        <input runat="server" bind-value="#usr.Name"/><br/>
    </itemTemplate>
</aqd:forEach>
<input runat="server" ext-serverClick="SaveUsers()"/>

Websites powered by AqDWeb:


I developed this framework for a dental health forum, and I will provide the link as soon as my customer decides the domain.

Contact Me: aquila.deus@gmail.com SourceForge Project: http://sourceforge.net/projects/aqdweb

SourceForge.net Logo
Valid XHTML 1.0 Transitional :: Invalid CSS :: Powered by Wikka Wakka Wiki 1.1.6.1
Page was generated in 0.1785 seconds