/*
Tofu is made of excellent products.
Tofu technology Station
If reprinted, indicate the source
*/
Hello everyone, I have previously written an article comparing several dynamic programming languages (for details, see lanmu/viewarticle. asp? Id = 17), at that time the asp rating is very low, because at that time jsp is really good, there is no technology at that time can catch up with jsp, now MS launched. the net strategy and the corresponding asp.net (asp +) change this situation.
For other asp + problems, many articles have been written on the tofu site. I will compare them here again.
For the program running speed problem, please refer to the program
<%
Dim intStart, intStop As DateTime
Dim timeUse As TimeSpan
Dim Sum, I, j as int32
IntStart = DateTime. Now
For 1 to 20000
For j = 1 ~ 20000
Sum = Sum + I
Next
Next
IntStop = DateTime. Now
TimeUse = intStop. Subtract (intStart)
Response. Write (TimeSpan. ToString (timeUse ))
%>
See output: 3. About 6 seconds, God, the speed is really fast. It has achieved the same running effect as jsp, because they also adopt preCompile. How about Cool!
Author: tofu (original)