a) Tengo Visual Studio 2005 Professional
b) Compré un sistema para importar contactos de las cuentas de correo de los usuarios.
Mis preguntas:
1. Cuando intento abrir uno de los siguientes archivos, me aparece una pantalla de Visual Studio con toda la lista de programas disponibles, como: Visual Basic, Visual C, Web Development Settings, General Development Settings, etc.
Entonces, mi pregunta, con que programa edito cada archivo como:
>>> index.aspx :
>>> index.aspx.cs :
>>> index.aspx.resx :
>>> Web.config :
2. Si corro el archivo: http://localhost/importerNET/index.aspx, me da este error:
Código HTML:
Server Error in '/' Application.
--------------------------------------------------------------------------------
Configuration Error
Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.
Parser Error Message: It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level. This error can be caused by a virtual directory not being configured as an application in IIS.
Source Error:
Line 44: by Microsoft that offers a single logon and core profile services for member sites.
Line 45: -->
Line 46: <authentication mode="Windows" />
Line 47:
Line 48: <!-- AUTHORIZATION
Source File: c:\inetpub\wwwroot\importerNET\web.config Line: 46
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.573; ASP.NET Version:1.1.4322.573
Código HTML:
<authentication mode="Windows" /> <!-- AUTHORIZATION This section sets the authorization policies of the application. You can allow or deny access to application resources by user or role. Wildcards: "*" mean everyone, "?" means anonymous (unauthenticated) users. --> <authorization> <allow users="*" /> <!-- Allow all users --> <!-- <allow users="[comma separated list of users]" roles="[comma separated list of roles]"/> <deny users="[comma separated list of users]" roles="[comma separated list of roles]"/> --> </authorization>
Gracias.