AqDWeb : HomePageHomePage :: 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:
Home Page for AqDWebA 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]
2. No More SQL: public class User: PersistentEntity { [NHMA.Property(Length=200)] public string Name { set { _name = value; } get { return _name; } } public class UserListPage: ManagedPage {
3. Full-automatic Two-way Data Binding: 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); } <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∞ |