More on my question:
HTML and JavaScript are called "client code."
C # and VB in the files behind the code are called "server code".
So what is inline-asp code and the 'runat = server' code called?
<p>Hello World</p>
<script>alert("Hello World");</script>
...
public void Page_Load(object sender, EventArgs e)
{
Response.Write("Hello World");
}
...
<%-- What is this called ??? --%>
<asp:Label ID="MyLabel" runat="server" />
<% Response.Write("Hello World"); %>
The best term I can come up with is "web form code."
source
share