Code sample
AdvantShop.NET contains over 30.000 lines of VB.NET code all of which are essential for web store functioning.
To launch a web store on a local PC here’s what you’ll need: IIS 5.1 or a later version, .NET framework 3.5 SP1 to launch initial codes and MS SQL 2005/2008 for database.
Code File Organization
 |
| Physically the code is located in function-arranged directories. |
| AdvantControls - directory for web store non-visual components |
| AdvantHttpModule - directory for system http handler code |
| AdvantShopRepository - initial code main repository |
| /Core - system base functions |
| /Data - system models and entities |
| /Helpers - helper functions |
| /PaymentModules - payment modules |
|
Internal Code Organization
 |
| In internal NameSpace the code is located the similar way: |
| AdvantShop.Controls - directory for web store non-visual components |
| AdvantShop.Data - directory for system classes and models |
| AdvantShop.Core - initial code main repository |
| AdvantShop.Helpers - helper functions repository |
|
Code sample
|
MetaInfo model class example (SEO)
Database processing code on the example of category product quantity calculation function
Provider for access to web.config file settings
|
|
MetaInfo model class example (SEO)
Database processing code on the example of category product quantity calculation function
Provider for access to web.config file settings
|