How holy it is To yourself when the examination system is not in touch with it. I feel that I have not been able to touch it in the last year, because I am very slow. But with the popularity of participation, I also applied. The teacher told me: "Yes! And ** just say it !" When I ask, is my progress okay? The teacher said, "It's okay. We have already arranged it. We are ready to make a" success ". In this way, we started the preparation of the examination system with various questions.
First, assign tasks to the team leaders to understand the requirements.
Next, learn and install various necessary software, such as note-taking and Zen-tao!
Finally, the task is completed. If there is a lot of data in the face of such a large amount of code, can it be done ?? After all, less than half of B/S. But with all sorts of doubts, I went on. Next, let's take a look at my task "Configuring templates based on chapters ".
First, I will introduce my requirements. I will manually configure the template according to the question type and chapter. In addition, the question type configuration template is correct, so it seems that the chapter errors are also very easy to modify. First look at the wrong image:
Are you aware of these two errors ?? In fact, they are an error reported in different locations, so my strategy is to lock one for debugging. I have no idea about the second error "string constants not ending in javascript. So I started with it and checked it online to explain the following:
1. When JAVASCRIPT is referenced, the character languages used are inconsistent.
For example, <script type = "text/javascript" src = "xxx. js "charset =" UTF-8 ">. xxx. js file is used inside the GB2312 format, calling outside is used UTF-8, so some special characters inside the file because of inconsistent formats, garbled, this cause.
2. When JAVASCRIPT outputs HTML characters, the front and back labels do not match.
This is common. when outputting a string, single quotation marks (') or double quotation marks (") are not paired, or. when writing (), the single quotation mark (') or double quotation mark (") is not correctly output (")
3. HTML markup language or line break in the Parameter
The obtained data is transmitted as a parameter to a function. As a result, the data contains a line break, causing this error. For example, it is normal to use only a single row of data during the test. This error is not reported ,. this error occurs when multiple rows of data are used during the test and the carriage return link is used for line feed. because it contains line breaks
These errors have just been mentioned at the academic exchange last night. If this is the case, errors will occur when you add questions. Later, I moved the focus to "the index is out of range. Check which index is out of range and lock the problem to the following code.
enTemplateDtls1.TemplateID = Request.QueryString["strTemplateID"]; enTemplateDtls1.other1 = ((QuestionTypeOrderEntity)ltOrderQuestion[i - 1]).Order;
In the second sentence, the array of ItOrderQuestion is 3. If you add three types by question type, no error will be reported. There are eight chapters by chapter, so the range is exceeded and an error is reported. What does other1 mean here ?? According to the pre-and pre-approval fields, I asked the Team lead to say this is useless here, so it has no effect on commenting it out, so the problem is solved. At that time, I felt that the time was not in vain and finally came out.
So through the above modifications, I realized that as long as I work hard and stick to it, I will be able to succeed!