dotnet distributed apps:
I am trying to instantiate a windows form from a webform.
I have a command button on my web form with the following
code in the on_click.
Private Sub Button1_Click(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles Button1.Click
Dim frmTemp As Form
Dim SimpAsm As [Assembly]
SimpAsm = [Assembly].LoadFrom
("http://jgrundy1/autodeploy/ClassLibrary1.dll")
frmTemp = CType(SimpAsm.CreateInstance
("ClassLibrary1.form1"), Form)
frmTemp.Show()
End Sub
When the 'loadfrom' tries to execute I get the following
error:
"HTTP download of assemblies has been disabled for this
appdomain."
How do I enable download of assemblies?