.net application will not load

  • Thread starter Thread starter Sean
  • Start date Start date
S

Sean

Hello, I have created a .net application with Visual
Studio .Net 2003 and placed it on a server. Then I
created an asp page where a client user can click on the
link, open and execute the file. When the user selects
to save the file on their personal computer it saves and
then executes locally just fine. Unforutnately when the
user selects to open the file from its current location
(on the server), I get a error: 0x60c(1548) Thread: 0x625
(1572). I need this file to execute without placing it
on the user's computer.

Any ideas?

Sean
 
Hello, I have created a .net application with Visual
Studio .Net 2003 and placed it on a server.
I need this file to execute without placing it
on the user's computer.

Most likely, your .NET configuration settings don't allow you to
execute code from the local intranet zone. That's the default setting.

To change this, go to "Start > Programs > Administrative Tools > .NET
Framework Wizards" and then pick "Adjust .NET Security".

Pick "Make changes to this computer", then select the "Local Intranet"
icon, and push up the slider to "Full Trust". Close by clicking on
"OK" several times.

Now you should be able to execute code from the local intranet zone
(e.g. a network share).

Marc

================================================================
Marc Scheuner May The Source Be With You!
Bern, Switzerland m.scheuner(at)inova.ch
 
Back
Top