How does ASP code execute? Is it logically, like JavaScript? Or does the server process all ASP code and then send the results to the client?
Example:
<code>
<html>
...
<sript>
var x
x = window.confirm("Name:"
</script>
...
<%
'...do functions and stuff...
Response.Write "hello"
%>
</code>
Basically, I'm wondering if the JS will process before the ASP at the end of the file. No, I'm not trying to make the two interact, I'm just wanting to better understand it's processing. Thanks. ~[ cid ]~
cid@cjd-web.com
Example:
<code>
<html>
...
<sript>
var x
x = window.confirm("Name:"
</script>
...
<%
'...do functions and stuff...
Response.Write "hello"
%>
</code>
Basically, I'm wondering if the JS will process before the ASP at the end of the file. No, I'm not trying to make the two interact, I'm just wanting to better understand it's processing. Thanks. ~[ cid ]~
cid@cjd-web.com