fsm priest
New member
ok, to be more clear, consider the below asp.net server tags:
<asp:TextBox ID="txLol" onchange="javascript:TextBoxChanged();" runat="server" />
<asp:TextBox ID="txLol" onchange="vbscript:TextBoxChanged()" runat="server" />
what is the technical name for when you use "javascript" or "vbscript" in an inline fashion like that? i know how they work, but am wanting to know what, exactly, that is called?
the only thing i can think of is "inline language identifier". that sounds reasonable since it does seem you're using a sort of tag to serve as an identifier for the browser as to what language you're using and it is done inline (within the tag rather than having its own script block).
any ideas? also, please point to a source that actually defines this so i can verify it if you want best answer, thx
<asp:TextBox ID="txLol" onchange="javascript:TextBoxChanged();" runat="server" />
<asp:TextBox ID="txLol" onchange="vbscript:TextBoxChanged()" runat="server" />
what is the technical name for when you use "javascript" or "vbscript" in an inline fashion like that? i know how they work, but am wanting to know what, exactly, that is called?
the only thing i can think of is "inline language identifier". that sounds reasonable since it does seem you're using a sort of tag to serve as an identifier for the browser as to what language you're using and it is done inline (within the tag rather than having its own script block).
any ideas? also, please point to a source that actually defines this so i can verify it if you want best answer, thx