Click here to Skip to main content
15,882,063 members
Articles / Web Development / CSS

15 Steps to Develop a Product Management System in Only a Day

Rate me:
Please Sign up or sign in to vote.
4.83/5 (51 votes)
23 Mar 2010GPL34 min read 247.7K   4.8K   163   28
The article introduces how to easily develop business solutions in RapidWebDev through developing a product management system with the special requirement step by step.

Introduction

The article introduces how to easily develop business solutions in RapidWebDev through introducing the development for a product management system with the following requirement step by step. The source code of this sample system is downloadable here.

Requirement

The glossary of the system are role, user, permission, product category, product and product log. The product categories are maintainable enumeration values by administrators that a product has to belong to a category. There are 2 kinds of product properties, hardwired and dynamic properties. The hardwired properties like Name, Number, Description and Manufactory, etc. which cannot be changed at runtime. The dynamic properties are maintained by administrators online. Administrators can define Text, DateTime, Date, Integer, Decimal and Enumeration typed dynamic properties for products at any time.

The system includes:

  1. role management with permission setting
  2. user management with permission setting
  3. product category management
  4. product dynamic property management
  5. product management with logs, includes:
    • create products
    • update products
    • delete products
    • bulk delete products
    • print/export products

Development

Let's first download the RapidWebDev release package (v1.51) from the official website and extract it locally. I intend to reuse its Web and Tests project by adding product management features so that I can save time to setup environment and project structure.

Step 1: Create a database for product management system:

Step 2: Initialize the database by RapidWebDev SQL scripts, Database.sql, SchemaVersions.sql, and UnitTest for ExtensionModel.sql.

Step 3: Open the downloaded RapidWebDev solution in Visual Studio 2008, and modify the database connection string of Web.config for Web project and App.config for Tests project. Then modify RapidWebDev.Web\Config\permission.config for the requirement of product management system so that administrators can assign roles/users with correct permissions in management UI.

Step 4: Modify RapidWebDev.Web\Config\sitemap.config for navigation menu. The sitemap.config is integrated with authorization that users only can see the links which they have the appropriate permission.

Step 5: First launch the web project and log on. You can see the system main page is as following screenshot.

Step 6: Then we can create data tables for product management system. As RapidWebDev provides generic Role/User management and concrete data model, we don't consider the authentication and authorization, and we can reuse concrete data model for product category. So we only need to create 2 tables bizProducts and bizProductLogs. biz_Products schema is below:

Step 7: biz_ProductLogs schema is below:

Step 8: Create a new project into the solution named ProductManagement with references to necessary assemblies. And generate a Linq2SQL model from ProductManagement database. Besides, set the base class of ProductManagementDataContext to RapidWebDev.ExtensionModel.Linq.ExtensionDataContext and Product to AbstractExtensionObject for product dynamic properties support.

Step 9: Configure ProductManagement data context into web.config of Web project and App.config of Tests project with setting connectionStringName to Global which means that it uses the connection string named "Global" for database connection.

Step 10: As product properties are maintainable at runtime, we need to create an installer to setup metadata type for product when the application started.

Step 11: Let's start to implement product category management. We create an ascx template for product category detail panel first as follows. As product category integrates RapidWebDev concrete model, actually we can copy from Templates\Platform\ConcreteData.ascx and do modification.

Step 12: Then create a dynamic page configuration ProductCategoryManagement.dp.xml. Actually it's copied and modified from Spring\DynamicPage\Membership\ConcreteDataManagement.dp.xml as well.

Step 13: Then implement product management. As product category, we still create an ascx template for product detail panel first.

Step 14: Implement aggregate panel, detail panel and dynamic page interfaces for Product as following screenshot.

Step 15: Configure the dynamic page for product management in the last step.

Then compile the solution and launch the web application. We see the logon page shows up:

Logon with user=admin and password=password1 and get the system main page with navigation menu:

Finally

Surely, if we need to deploy the solution to our customers, we may have to replace the background image of logon page, logo and license information of the system main page, even rename the solution file name. But as you see, we don't do much work on development really. I created this sample application in only 4 hours. But it should be less than 2 working days for a RapidWebDev new guy.

What's RapidWebDev

Official Website: http://www.rapidwebdev.org

RapidWebDev is an infrastructure that helps engineers to develop enterprise software solutions in Microsoft .NET easily and productively. It consists of an extendable and maintainable web system architecture with a suite of generic business model, APIs and services as fundamental functionalities needed in development for almost all business solutions. So when engineers develop solutions in RapidWebDev, they can have a lot of reusable and ready things then they can more focus on business logics implementation. In practice, we can save more than 50% time on developing a high quality and performance business solution than traditional ASP.NET development.

Related Topics

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
President TCWH
China China
I've worked as a software architect and developer based on Microsoft .NET framework and web technology since 2002, having rich experience on SaaS, multiple-tier web system and website development. I've devoted into open source project development since 2003, and have created 3 main projects including DataQuicker (ORM), ExcelQuicker (Excel Report Generator), and RapidWebDev (Enterprise-level CMS)

I worked in BenQ (8 mo), Bleum (4 mo), Newegg (1 mo), Microsoft (3 yr) and Autodesk (5 yr) before 2012. Now I own a startup company in Shanghai China to deliver the exceptional results to global internet users by leveraging the power of Internet and the local excellence.

Comments and Discussions

 
SuggestionOK Article Pin
Member 978964127-Jan-13 7:47
Member 978964127-Jan-13 7:47 
QuestionGOOD ARTICLE Pin
gitman8627-Feb-12 16:50
gitman8627-Feb-12 16:50 
QuestionHI FRIEND... Pin
sk1884s1-Feb-12 4:45
sk1884s1-Feb-12 4:45 
QuestionGood article Pin
Member 353296025-Mar-11 7:09
Member 353296025-Mar-11 7:09 
GeneralMy vote of 1 Pin
Marek.T17-Jun-10 4:10
Marek.T17-Jun-10 4:10 
GeneralRe: My vote of 1 Pin
FernandoUY18-Jan-12 9:09
professionalFernandoUY18-Jan-12 9:09 
GeneralExcellent Pin
DecodedSolutions.co.uk2-Jun-10 22:00
DecodedSolutions.co.uk2-Jun-10 22:00 
GeneralMy vote of 1 Pin
Aoi Karasu 18-Apr-10 22:15
professional Aoi Karasu 18-Apr-10 22:15 
GeneralRe: My vote of 1 Pin
lepipele19-Apr-10 14:36
lepipele19-Apr-10 14:36 
GeneralRe: My vote of 1 Pin
Shivprasad koirala24-Apr-10 4:35
Shivprasad koirala24-Apr-10 4:35 
GeneralAmazing timing ... Pin
Peter Hayward23-Mar-10 14:35
Peter Hayward23-Mar-10 14:35 
GeneralAwesome! Pin
Sandeep Mewara13-Mar-10 21:23
mveSandeep Mewara13-Mar-10 21:23 
GeneralExcellent Pin
Md. Marufuzzaman4-Mar-10 4:09
professionalMd. Marufuzzaman4-Mar-10 4:09 
GeneralGreat Pin
nicholas_pei1-Mar-10 22:52
nicholas_pei1-Mar-10 22:52 
GeneralRe: Great Pin
nicholas_pei4-Mar-10 16:26
nicholas_pei4-Mar-10 16:26 
GeneralRe: Great Pin
Eunge4-Mar-10 16:32
Eunge4-Mar-10 16:32 
GeneralRe: Great Pin
nicholas_pei5-Mar-10 0:29
nicholas_pei5-Mar-10 0:29 
GeneralReally nice. Pin
Krunal Mevada1-Mar-10 18:45
Krunal Mevada1-Mar-10 18:45 
GeneralKeeping up Brother! Pin
Southmountain1-Mar-10 18:20
Southmountain1-Mar-10 18:20 
GeneralRe: Keeping up Brother! Pin
Eunge2-Mar-10 2:32
Eunge2-Mar-10 2:32 
Generalcool Pin
zhuqil1-Mar-10 1:37
zhuqil1-Mar-10 1:37 
GeneralMy vote of 1 Pin
iaxes28-Feb-10 21:33
iaxes28-Feb-10 21:33 
GeneralRe: My vote of 1 Pin
Wes Aday1-Mar-10 4:28
professionalWes Aday1-Mar-10 4:28 
GeneralRe: My vote of 1 Pin
Xmen Real 23-Jun-10 17:00
professional Xmen Real 23-Jun-10 17:00 
GeneralRe: My vote of 1 Pin
spoodygoon1-Mar-10 5:24
spoodygoon1-Mar-10 5:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.