Q
Qwert
Heya,
I want to use classes from custom assemblies:
<HTML>
<%@ Assembly Name="TestASP.dll" %>
<script language="VB" runat="server">
Dim objTest As New TestASP.TestASP()
Sub Page_Load(Sender As Object, E As EventArgs)
objTest.ShowMessage()
End Sub
</script>
</HTML>
but it's not working this way. How does it work?
Thanks.
I want to use classes from custom assemblies:
<HTML>
<%@ Assembly Name="TestASP.dll" %>
<script language="VB" runat="server">
Dim objTest As New TestASP.TestASP()
Sub Page_Load(Sender As Object, E As EventArgs)
objTest.ShowMessage()
End Sub
</script>
</HTML>
but it's not working this way. How does it work?
Thanks.