Jay,
Scripting I tend to think of client side, the Code directory is server side,
just as the ASPX itself is server side...
Sorry, to say it is not, that is the great misunderstanding all the time. I
do not know if you have ever looked at the VB6 IIS class. I tried it a while
and then there was said that the project was stopped, it was full of bugs.
However it creats a serverside dll for an IS server.
Now we have our VS.studio way as you and I recognize making serverside DLL
applications.
However when you take the samples from the SDK 1.1 it is all a kind of
scripting.
(And most samples on msde are, and therefore mostly difficult for us)
You can make aspx pages and ascx pages. In that you can place your HTML and
language code, however not compile, it is compiled just in time at
serverside. There is no problem to place VB after a C# paragraph.
See this by instance (it is old)
<script language="C#" runat="server">
public string loging
{
get { return loginbox.Text; }
set { loginbox.Text = value; }
}
public string pw
{
get { return pwbox.Text; }
set { pwbox.Text = value; }
}
</script>
I hope I clear with this more what I mean?
Cor