Hello
I took some code from an example and implemented it but I not sure why it works.
The sample code has
<%@ Page Language="vb" Explicit="True" Debug="True" %> and no Inherits or Codebehind attributes.
When I added the appropriate Inherits & Codebehind attribute it doesn't run.
But when I leave it as <%@ Page Language="vb" Explicit="True" Debug="True" %> it works.
Why does this work????????

Is it because the sample code has been compiled already and doesn't need Inherits & Codebehind?
I thought these two were required for the ASPX page to run???