ASP. NET Aries getting started development tutorial 1: download and run the framework, asp. netaries
Background:
In view of the increasing number of users of the framework, there are too few documents, and many users have a high entry threshold for reflecting the framework.
Okay, let's take a hard time writing tutorials!
Step 1: Download the framework source code
Open Source Address: https://github.com/cyq1162/Aries
We recommend that you use SVN or Git to download the file because it can be updated at any time. (It is inconvenient to update and upgrade the package)
Step 2: Run F5
The database is directed to a text database by default, so you can run the database directly and see the logon interface:
The default username and password are admin and 111111, which are already written in html.
Click Login. If the prompt is as follows:
Then you can open web. config:
After saving the modification, run the "login" command to log on to the system:
Step 3: Database switch: 1: database file directory:
Here, I have provided three types of database scripts: MSSQL, MySQL, and Oracle.
Each directory contains three files: database design documents, table structures, and table data.
Create a database by yourself, execute the table structure script, and then execute the table data script.
(The provided DBImport tool can be used to convert between various databases)
The text database used by the system by default is archived in the App_Data directory:
2: Switch the database link:
Modify connectionString as needed.
For Oracle, the Web. UI project references the Oracle. ManagedDataAccess. DLL file under the dll Directory (to be decompressed ).
MySql references MySql. Data. dll. It seems that it is cited by default.
Step 4: browse at will: 1: API documentation:
2: Html file:
3: Ajax request and response:
Summary:
This article introduces how to develop a new page !!