Visual Basic.NET - PROBLEMAS AL ABRIR UN ARCHIVO

 
Vista:

PROBLEMAS AL ABRIR UN ARCHIVO

Publicado por Edgar (23 intervenciones) el 09/07/2007 22:01:52
Hola amigos del foro, como están, tengo un problema, miren, mi aplicación esta echa con webform, y para abrir, copiar o mover un archivo de con extención.doc, .xls entre otras, de una maquina a otra, uso file y sus funciones, hasta ahí todo bien, pero al compilar el aplicativo, sale un error, y no se si no puedo abrir el documento o moverlo, pero en fuentes no sale esto, es bien raro, no se que hacer, ojala puedan ayudarme, gracias de antemano, adjunto el mensaje que sale en la maquina

Runtime Error
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>

Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.
<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>

Espero puedan ayudarme
Saludos desde lima Perú
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder

mas datos

Publicado por Edgar (23 intervenciones) el 09/07/2007 23:41:24
bueno capture el mensaje de este problema en el cmpilado y dice esto
errorCould not find file mas la ruta del archivo, al parecer no lo esta leyendo, o ubicando, me pueden ayudar con este problema, gracias de antemano
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar