Website project implementation business process and standardization

xiaoxiao2021-03-06  52

Business Process First, find customers, determine the website development intent. During the process of communicating with customers, you may have to show the previously implemented model project, or you may have to make a website sample (image and text description). Second, sign a website project development contract. The client is prepared a certain amount of amount. Third, the project is implemented, the customer delivers all projects. Demand Analysis 1. Carrying the Application Level of Customer Computer Application. Second, determine the responsible personnel of the client project. Third, the user needs investigation conference (minimum) to participate in the conference staff: customer party: leaders, customer project leaders, business representatives, technicians, etc. We: Business staff, project manager, technical personnel (participated as much as possible). The content and results of the discussion: the user's demand is center, discussed, generating the list of websites (represented by tree map), which is a static page, which is a dynamic page. Develop the interface framework of the website, including the first page composition, and the hook relationship between each page. This step may need to repeatedly cycle itself until the customer is satisfied. Demand analysis should consider the current business of the user, but also appropriately consider the expansion of future business. Data required to analyze records must be reliable. Demand analysis must be targeted by the user's reality, neither concealing technical details, deceive customers, and cannot produce "excessive demand", unlimited deviation from the company's technical force even produces some "impossible" needs. The results of demand analysis are "Project Demand Manual". Fourth, the two sides signed the "Project Demand Manual" and signed the technical basis for the next development. The purpose of signature is to ensure that the user needs stability during project implementation. Because of a large number of changes, even "unlimited demand", will increase the development cost, the final delay period, will also affect the quality of the project. Development processes and regulatory web development depends, determine that Web development must comply with certain development specifications and technical conventions, only each developer is designed, communicated, developed, tested, deployed in accordance with a common norm. To ensure the coordinated work of the entire development team, improve the development of work efficiency and improve the quality of the project. I. The role of the project If not included, the development team can generally be divided into project leaders, programmers, and art sales. The project leader is called "Project Manager" in our Chinese, which is responsible for the personnel coordination, time progress of the project, and handles other matters related to the project. The programmer is mainly responsible for the needs of the project, planning, design, code writing, website integration, testing, deployment, etc. Artists are responsible for the interface design, layout planning, and grasp the overall style of the website. If the item is relatively large, you can group people according to three characters. The role division is an objective requirement for the technical dispersion of Web projects and even geographic dispersion. The results of division of labor can also clarify the responsibility and ultimately guarantee the quality of the project. The negative effects brought by division of labor are to increase the team communication, coordination cost, bringing certain risks to the project. Therefore, the coordination capacity of the project manager is very important. The initial and late stage of program developers and the United States in the project development must have sufficient exchanges to complete the planning and testing of the project. Second, the selection of development tools is not like the C / S structural program development, you can go from head to tail in a language, you use delphi, you are Delphi programmers, you use VC , you are VC programmers. The B / S structure web development work, the choice of tools is a painful thing.

From Windows to Linux, from IIS to Apache, from J2EE to .NET, from COM to .NET to EJB Components ... Also ASP, ASP.NET, JSP, PHP, Perl, JavaScript, VBScript ... The beauty is also easy , What "Web three sword passengers" "New page Swordac", FrontPage, Photoshop, Coreldraw ... no one said that he is the most powerful! Our experience is that it is best to unify it when choosing tools. For example, the artist is unified with Dreamwavermx, and the programmer writes the code with the text editor. The benefit of a unified tool is to maintain the consistency of the same project document, which is convenient for the development of the developer and the saving of the document. However, it is not necessary to deliberately strive for consistency, such as the US worker can use any of the familiar graphics processing software, as long as the picture can be generated by the browser support. It is the diversity of web development tools that has achieved colorful situations today. As long as the programmer's pure HTML and JavaScript code have enough efforts enough, you can compete for the final website integration. Third, the project development process If the project truly talks, it is necessary to officially determine the needs analysis of the preceding stage, and the supplementary step must be added. Then, the detailed overall design is carried out, in fact, it is basically a repetitive and improvement of the preceding work. Generate structural diagrams of each column folder (some public folders such as images, scripts, styles, etc. need to be fixed, co-calls). Then design a static web page and other dynamic page interface framework based on the description of the content, and the segmentation is cut according to the size cut. Give the page reserved page space for the page you need to dynamically implement. Forming fonts, font numbers, hyperlinks, etc. CSS style, etc. At the same time as the art design page, the programmer starts to develop the background program code and do some necessary tests. After the US worker interface is completed, the program code is added to the website. The test was jointly tested by the project group, discovered BUG, ​​and improved some specific details. Making help documents, user manual. Deliver the necessary product design documentation to users. Then use the website deployment, customer training. Finally, enter the website maintenance phase. This phase may not be included in the project, as the company's service content. Each of the above will produce some phased outcomes, and the project manager needs timely supervision, review, and find problems in timely correction. In order to control the progress of the project, the "Project Schedule" system should be implemented, ie fill in the work log, record the details and workload of the day, and the problem that needs to be resolved and has been resolved. Fourth, some technical rules 1, database naming conventions (refer to the "Hungarian Nomenade" database (Database): format [db] _ [desc]. Table: Format [Tab] _ [DESC]. The design of the table name cannot exceed 30 characters, the word premniction letter is uppercase, and there is no connection symbol between multiple words. Field or Column: Format f_ [type] _ [dec]. f: indicating this is a field name; Type: Optional, indicating the field type, the character type C, integer is I, logical type B, currency type M, floating point F, date D, time Type T, binary is BL. If the type is a character, it can be omitted.

DESC: The meaningful description of the field properties, can be used in English words, words abbreviation, Chinese pinyin, field actual meaning, etc., can use words between the first letters to write soft segmentation (recommended), or use "_ "Separate. Example: f_name (Name) F_C_ UserInfo or F_C_ User_INFO F_XM (Name) F_GRP_ID (Group Identification) Index: Format [IDX] _ [DESC]. View: Format [View] _ [Table A] _ [Table B] _ [Table C] ..., where view means "view". This view is generated by several tables that connects several tables in the name of the character, if excessive table can be properly simplified. Store procedure: format [sp] _ [table] _ [Access process name (abbreviation)], such as sp_user_delete. Trigger: Format [TRG] _ [D] [i [[u] _ [desc]. TRG represents the trigger; D, I, U indicate the trigger type (delete, insert, update) definition, writing order is D, I, u; DESC is the name of the table, indicating the table where the trigger is located. Database Device: Format [dev] _ [DESC]. Constraint: format [CNS] _ [DESC]. 2, SQL statement writing specification SQL statement, SQL keywords are all capitalized, other compliance "database naming conventions". For example: select * from tabnewsinfo where f_username = 'Order by f_i_autoid 3, folder naming agreement public folder: / images public picture / styles style sheet / scripts script / ftps Download / DOC website related material, document /read / radime.txt Web Site Description Document / Helps.htm Web Site Help Document / MYLOGS.TXT Website Maintenance Records Other columns Named, you can use the pinyin's first letter to refer to the English words. The meaning of all folders is described in the readme.txt file. 4. Objects and variable naming conventions Each variable name must be defined first, then use. The top addition of the ASP file <% OPTION Explicit%> can force the variable definition. Class blocks must be used in indentation format. You must indicate the function of the function, enter the parameters, and return values. Variable Type Abbrefix String STR or S INTEGER INT DATE DT Object OBJ or O Boolean BOL or B BYTE BYT DOUBLE DBL ERROR ERR Long LNG SINGLE SNG 5, graphic objects Conventional Picture Format: Finally Generate JPG, GIF, PNG, SWF format Byte size of graphics files: Maximum size of more than 30K images: OK as needed, it is best to use small pictures, large pictures must be cut into small pictures.

转载请注明原文地址:https://www.9cbs.com/read-115660.html

New Post(0)