Mention ASP Many people think it is a bunch of HTML scripts and are enclosed in <% and%> some of the code and some JavaScript scripts, such as the collection of some code, such code, plus various types of annotations in different formats, looks like a word: chaos. And no matter whether others can understand, as long as it can achieve their own purposes.
Because the ASP code is also a script, to the customer can not be seen in the contents of the content, by more inclusive in the DLL part of the business logic, but still feel that the ASP code is the most worthless code, no one went back to buy, Can be at any time from other people's website to see the form of the source of other people worked hard to write out the unique style of Dongdong. These reasons make the development of ASP as a fast-forgotten and fast code, readability, maintenance is the most bad code in various languages.
In fact, ASP code can also be like other languages of the object-oriented, modularization, a lot of page integration into a class, the use of different methods in the class to display different pages, so you can encapsulate the same business logic of the page and logic into a class, in a different way to implement. Said so much, maybe everyone's ideas are messy, and quickly give you a sample to see:
<%
'****************************************
' * Class Name: Clswebworkflowlog
' * Function: Workflow Log Tracking class
' * History:
' * Made: Doface
' * Date: 2003/10/24 Ver 1.0
' * Change:
' * Date:
'****************************************
Class Clswebworkflowlog
' Define public properties to store connection objects
Public ActiveConnection
Private Oresponse
'========================================
' = Procedure Name: Main
' = parameter:
' = function: Keynote function
' = perform different actions based on different action parameters
' = return value:
'========================================
Sub Main ()
Select Case Request ("act")
case "list"
list ()
Case Else
list ()
End Select
end Sub
' ========================================
' = Procedure name: List
' = parameter number:
' = function: Display list screen
' = return value:
' ================================= =======
sub list ()
Dim oRs
Set oRs = Activeconnection.execute ("SELECT *," (select name from WF _config where id=w.wf_id) as Wfname from Wf_log W where step_id=1 and User_id= "& Session (" USR ") (" UID ")
" (s) Elect * from Wf_log where ID in (SELECT max (ID), wf_id,tab_id,rec_id from Wf_log Group by wf_id,tab_id,rec_id where wf_id= and tab_id=)
%> <p align= "left" ><font color= "#FF0000" ><b> to be done:</b></font>< /p>
<center>
<table bgcolor= "#FFFFFF" border= "1" bordercolordark= "#ffffff" bordercolorlight= "#c0c0c0" cellspacing= "0" width= " 99% "height=" >
<tr>
<TD bgcolor= "#808080" height= "><font color=" #FFFFFF "> Process name </font></td>
<TD bgcolor= "#808080" height= "><font color=" #FFFFFF "> Applicant </font></td>
<TD bgcolor= "#808080" height= "><font color=" #FFFFFF "> Application time </font></td>
<TD bgcolor= "#808080" height= "><font color=" #FFFFFF "> Completion time </font></td>
<TD bgcolor= "#808080" height= "><font color=" #FFFFFF "> Status </font></td>
<TD bgcolor= "#808080" height= "><font color=" #FFFFFF "> Operation </font></td>
</tr><%
Do as not ors.eof
Dim maxid,next_id
If Glbfunc.getmaxid (oRs ("id"). value,activeconnection,maxid,next_id) Then
%><tr>
<TD bgcolor= "#ffffff" height= "><%=ors" ("Wfname")%></a></td>
<TD bgcolor= "#ffffff" height= "><%=session" ("usr") ("name")%> </td>
<TD bgcolor= "#ffffff" height= "><%=ors" ("Exetime")%> </td>
<TD bgcolor= "#ffffff" height= "> </td>
<TD bgcolor= "#ffffff" height= "><%=glbfunc.getcurzt" (ORs ("id"). value,activeconnection)%></td>
<TD bgcolor= "#ffffff" height= "><p align=" left "><a href=". /pubexetab/pubexetab.asp?act=view&tab_id=<%=ors ("tab_id")%>&id=<%=ors ("rec_id")%> ">< IMG src= "http://edu.cnzz.cn/images/action/view.gif" border= "0" alt= "detailed" width= "height=" ></a> <a href= "Javascript:newin (' Wfimage.asp?act=list&id=<%=ors" ("wf_id")%>&bz=1&step_id=<%=next_id %> ', true,false,false,false,true); " >< /a> </p></td><%
End If
%></tr><%
Ors.movenext
Loop
%></table>
</center>
<%
End Sub
End Class
'****************************************
' * Class end
'****************************************
'****************************************
' ASP page start
'****************************************
' Output standard HTML header
Glbfunc.writehead
Dim Owebworkflowlog
Set owebworkflowlog = new Clswebworkflowlog
Set owebworkflowlog.activeconnection = Glbfunc.getadoconnection
Owebworkflowlog.main
Glbfunc.writetail ()
%>
You can add more methods so that this class can complete the functionality of previous ASP files. Visit at the time of the. The ASP then adds a parameter (which function to access) to differentiate.