An Asp page normally consists of server side scripts,
client side scripts, HTML, and CCS.
I will try my best to
- keep CCS external files
- seperate server side scripts, client cripts, and
HTML
- put server side scripts at the top. only mix <%=varName%>
and related if or loop clauses with HTML
- put client side scripts all in <Head> section.
It will be very hard to separate server, client scripts,
HTML if the dinamically generated controls need to have
client side scripts associated with it.
|