ASP.Net MVP Framework had been dead !
ASP.Net MVP Framework
Project Description
A project to get you started with creating and designing websites. The
project is intended to provide you with guidance for whatever you want
to do in ASP.Net. We hope to make it easier for you to create and reuse
your websites by focusing on productivity and
quality.
NOTE This is NOT the ASP.Net MVC Framework. If you are looking for that, it can be found at
http://www.asp.net/downloads/
Instead of introducing a whole new framework for programming in ASP.Net,
the purpose of this project is to add all the parts missing from
ASP.Net. We hope to make it easier for you to create and reuse your
websites by focusing on productivity and quality.
For example, when you download the project, you get:
- exception handling built right in
- a pre-defined logging facility
- a sensible directory structure for ASP.Net projects, including space for
- project management
- testing
- configuration
- automated builds
- setup and deployment
- a framework for using the MVP pattern, with code based on a simplified version of the Microsoft Patterns and Practices web client factory.
- best practices for configuration and security
- basic web stuff, like favicon and robots.txt files - just to make your life a little bit easier,
- a routing framework
- url rewriting
- an integrated testing environment
The project structure makes it easy to integrate with build servers, such as Teamcity from JetBrains.com.
In the future, we hope to make your life easier for all your projects, by offering:
- powershell integration
- MS Build scripts to create basic project items (presenters and views)
- theme and skin support
- built-in workflow for Hub and Spoke patterns, Shopping Carts, and Contact Forms.
- plug-in support for all ASP.Net applications
For more information, visit Richard Bushnell's blog at http://richardbushnell.net.
There are no releases yet, but you can use the source code browser to
see what there is. Maybe you could get something from it already. If
not, just throw it away.
If you are interested in helping build out a framework to make ASP.Net
easier to build professional websites with, please contact Richard
Bushnell on his blog at
http://richardbushnell.net.
Last edited Feb 6, 2008 at 4:31 AM by richardbushnell, version 8
https://aspnetmvp.codeplex.com/
Model View Presenter with ASP.NET
http://www.codeproject.com/Articles/14642/Model-View-Presenter-with-ASP-NET

1
1
http://m.blog.csdn.net/blog/u011123714/45058625
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
ASP.Net MVP Framework had been dead !的更多相关文章
- Configuring Autofac to work with the ASP.NET Identity Framework in MVC 5
https://developingsoftware.com/configuring-autofac-to-work-with-the-aspnet-identity-framework-in-mvc ...
- LinqToSql和ASP.NET Entity FrameWork 中使用事务
ASP.NET Entity FrameWork中: int flag = -1; if (this.URPmanagementEntities1.Connection.State != System ...
- 理解ASP.NET MVC Framework Action Filters
原文:http://www.cnblogs.com/darkdawn/archive/2009/03/13/1410477.html 本指南主要解释action filters,action filt ...
- ASP.NET MVC Framework
ASP.NET MVC Framework是微软在ASP.NET中所添加的一组类库,这组类库可以使用Model-View-Controller的设计模式来开发ASP.NET的应用程序.它与现有的ASP ...
- ASP.NET Entity Framework with MySql服务器发布环境配置
首先,.net应该自带Entity Framework,所以服务器只要有对应版本的.net Framework就OK! 我们在开发环境中一般会直接使用edmx来管理应用程序与数据库的交互操作,所有与数 ...
- ASP.NET MVC framework 学习
http://www.cnblogs.com/lmfeng/archive/2013/03/28/2986123.html MVC数据绑定方式 http://www.cnblogs.com/lmfe ...
- [ASP.NET]Net Framework环境问题的一种修复方案
一.情况介绍 造价软件基于.net framework 4.0开发,要成功运行需要在目标电脑上安装4.0版本以上的framework.一般情况下xp是没有的,win7系列自带3.5,都需要手动安装4. ...
- SQLite to Asp.net Entity Framework 部署问题
最近做了一个小应用,使用SQLite做数据库.开始用DBLINQ的时候,做一个LINQ查询出现不支持的问题.后来看到Entity Framework是可以支持SQLite的,于是很快转换过来.完成开发 ...
- 对ASP.NET Entity FrameWork进行单元测试
添加一个测试用的类库:将Web.config中的connectionstrings节点下的东东复制一份到刚添加的类库的app.config下 使用NUint+TestDriven.net进行测试: 如 ...
随机推荐
- gRPC Load Balancing
gRPC Load Balancing 翻译自:https://grpc.io/blog/grpc-load-balancing/ 这是gRPC负载均衡的第一篇,后续会给出基于golang XDS服务 ...
- 轻型目录访问协议 ldap 公司内部网站的登录 单点登录
https://zh.wikipedia.org/wiki/轻型目录访问协议 轻型目录访问协议(英文:Lightweight Directory Access Protocol,缩写:LDAP,/ˈɛ ...
- TCMalloc源码学习(一)
打算一边学习tcmalloc的源码一边写总结文章.先从转述TCMalloc的一篇官方文档开始(TCMalloc : Thread-Caching Malloc). 为什么用TCMalloc TCMal ...
- .NET并发编程-函数式编程
本系列学习在.NET中的并发并行编程模式,实战技巧 函数式编程 和面向过程编程POP(procedure oriented Programming)面向对象编程OOP(object oriented ...
- 题解 P1248 【加工生产调度】
题目 某工厂收到了 n 个产品的订单,这 n 个产品分别在 A.B 两个车间加工,并且必须先在 A 车间加工后才可以到 B 车间加工. 某个产品 i 在 A.B 两车间加工的时间分别为 Ai,Bi 怎 ...
- loj10002喷水装置
长L米,宽W米的草坪里装有N 个浇灌喷头.每个喷头都装在草坪中心线上(离两边各 W/2米).我们知道每个喷头的位置(离草坪中心线左端的距离),以及它能覆盖到的浇灌范围. 请问:如果要同时浇灌整块草坪 ...
- python 基础二-----数据类型和控制语句
一.数据类型: 1)数据类型 1.整数(int) 2.浮点数(float) 3.字符串(string) 4.列表(list) 5. 元组(tuple) 6.字典(dict): key和value是一一 ...
- HTML 5 学习第二课
元素:<p>+++++++++</P> 全部内容 标签:<P></P> 属性:标签内部的内容 eg:<img src=" "& ...
- Linux——软件安装
Linux--软件安装 一.gcc 二.make 三.rpm 四.yum 一.gcc gcc是Linux上面最标准的C语言的编译程序,用来源代码的编译链接. gcc -c hello.c 编译产生目标 ...
- centos安装Qt
转:http://blog.csdn.net/wavelee/article/details/7855727 在编译Qt4.8.6版本的库时,在配置时 ./configure 出现了如下的错误: Ba ...