sys não está definido
Senhores, fiz um pequeno exemplo utilizando ajax.
O mesmo está retornando, ao abrir qualquer tela o seguinte erro:
´sys não está definido´.
alguém sabe como resolver isso?
segue abaixo conteúdo do meu webconfig.
<?xml version=´1.0´?>
<configuration>
<configSections>
<sectionGroup name=´system.web.extensions´ type=´System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´>
<sectionGroup name=´scripting´ type=´System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´>
<section name=´scriptResourceHandler´ type=´System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´ requirePermission=´false´ allowDefinition=´MachineToApplication´/>
<sectionGroup name=´webServices´ type=´System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´>
<section name=´jsonSerialization´ type=´System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´ requirePermission=´false´ allowDefinition=´Everywhere´ />
<section name=´profileService´ type=´System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´ requirePermission=´false´ allowDefinition=´MachineToApplication´ />
<section name=´authenticationService´ type=´System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´ requirePermission=´false´ allowDefinition=´MachineToApplication´ />
</sectionGroup>
</sectionGroup>
</sectionGroup>
</configSections>
<!--CONNECTION STRINGS
The connection string defined below is the the default connection string used by the
ASP.NET Providers (Membership, Role, Profile). See the ASP.NET PROVIDER section below.
The BlackfishSQL RemoteClient provider will work best for development since it will
support connections from multiple processes. This allows the ASP.Net
configuration manager and the web application to be running at the same time.
For deployment, the BlackfishSQL LocalClient may be used to allow for zero configuration
deployment option. To deploy locally, comment out the first connection string, and
uncomment the second.
The |DataDirectory| macro refers to \app_data off of the main directory for the application.
-->
<connectionStrings>
<remove name=´BlackfishSqlAspNet´/>
<!-- Remote ConnectionString : Use the string below for connecting to the provider using the Remote client -->
<add name=´BlackfishSqlAspNet´ connectionString=´database=|DataDirectory|bsql_aspnetdb.jds;protocol=TCP;host=localhost;user=SYSDBA;password=masterkey;create=true´ providerName=´Borland.Data.BlackfishSQL.RemoteClient´/>
<!-- Local ConnectionString : Use the string below for connecting to the provider using the local client -->
<!-- <add name=´BlackfishSqlAspNet´ connectionString=´database=|DataDirectory|bsql_aspnetdb.jds;user=SYSDBA;password=masterkey;create=true´ providerName=´Borland.Data.BlackfishSQL.LocalClient´/> -->
</connectionStrings>
<system.data>
<!-- ADDING THE DATA PROVIDER TO THE HOSTING SERVICE
The following tag will install the Blackfish Data Provider on the hosting service.
The <remove> tag is present to ensure that the application will work at design-time and
on your local machine. The entry is not present on a hosting service, but it is present on
your local machine. However, the entry can´t be duplicated, so in order to have things work on
your local machine, the duplication is avoided by removing the entry, and then adding it back again.
-->
<DbProviderFactories>
<remove invariant=´Borland.Data.BlackfishSQL.LocalClient´ />
<add name=´BlackfishSQL Local Provider´ invariant=´Borland.Data.BlackfishSQL.LocalClient´ description=´Provider with inprocess database Server´
type=´Borland.Data.DataStore.DataStoreProviderFactory, Borland.Data.BlackfishSQL.LocalClient, Version=2.0.0.0, Culture=neutral, PublicKeyToken=91d62ebb5b0d1b1b´/>
</DbProviderFactories>
</system.data>
<system.web>
<customErrors defaultRedirect=´Errorpage.aspx´ mode=´RemoteOnly´ />
<pages theme=´Summer´ pageBaseType=´BasePage.TBasePage´>
<controls>
<add tagPrefix=´asp´ namespace=´System.Web.UI´ assembly=´System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´/>
</controls>
</pages>
<!--
Set compilation debug=´true´ to insert debugging
symbols into the compiled page. Because this
affects performance, set this value to true only
during development.
-->
<compilation defaultLanguage=´c#´ >
<assemblies>
<add assembly=´System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´/>
<!-- BORLAND DEBUG KERNEL
The httpModule Borland.DbkAsp.DbkConnModule is required for debugging under IIS.
This module may be installed in web.config or machine.config, but not both.
Move the following line outside this comment to install.
<add assembly=´Borland.dbkasp, Version=10.5.0.0, Culture=neutral, PublicKeyToken=b0524c541232aae7´/>
-->
</assemblies>
</compilation>
<httpHandlers>
<remove verb=´*´ path=´*.asmx´/>
<add verb=´*´ path=´*.asmx´ validate=´false´ type=´System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´/>
<add verb=´*´ path=´*_AppService.axd´ validate=´false´ type=´System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´/>
<add verb=´GET,HEAD´ path=´ScriptResource.axd´ type=´System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´ validate=´false´/>
</httpHandlers>
<httpModules>
<add name=´ScriptModule´ type=´System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´/>
<!-- BORLAND DEBUG KERNEL
The httpModule Borland.DbkAsp.DbkConnModule is required for debugging under IIS.
This module may be installed in web.config or machine.config, but not both.
Move the following line outside this comment to install.
<add name=´DbgConnect´ type=´Borland.DbkAsp.DbkConnModule,Borland.dbkasp,Version=10.5.0.0, Culture=neutral, PublicKeyToken=b0524c541232aae7´/>
-->
</httpModules>
<!--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>
<!--AUTHENTICATION
This section sets the authentication policies of the application. Possible modes are ´Windows´, ´Forms´,
´Passport´ and ´None´
<authentication mode=´Forms´ />
-->
<authentication mode=´Forms´ />
<!--APPLICATION-LEVEL TRACE LOGGING
Application-level tracing enables trace log output for every page within an application.
Set trace enabled=´true´ to enable application trace logging. If pageOutput=´true´, the
trace information will be displayed at the bottom of each page. Otherwise, you can view the
application trace log by browsing the ´trace.axd´ page from your web application
root.
-->
<trace
enabled=´false´
requestLimit=´10´
pageOutput=´false´
traceMode=´SortByTime´
localOnly=´true´
/>
<!--SESSION STATE SETTINGS
By default ASP .NET uses cookies to identify which requests belong to a particular session.
If cookies are not available, a session can be tracked by adding a session identifier to the URL.
To disable cookies, set sessionState cookieless=´true´.
-->
<sessionState
mode=´InProc´
stateConnectionString=´tcpip=127.0.0.1:42424´
sqlConnectionString=´data source=127.0.0.1;user id=sa;password=´
cookieless=´false´
timeout=´20´
/>
<!--GLOBALIZATION
This section sets the globalization settings of the application.
-->
<globalization
requestEncoding=´utf-8´
responseEncoding=´utf-8´
/>
<!--ASP.NET PROVIDERS
The following section registers replacement ASP.Net providers which
Use BlackfishSQL as the default database.
-->
<membership defaultProvider=´AspNetAdoMembershipProvider´>
<providers>
<remove name=´AspNetAdoMembershipProvider´/>
<add name=´AspNetAdoMembershipProvider´
type=´Borland.Web.Security.AdoMembershipProvider, Borland.Web.Provider, Version=11.0.5000.0, Culture=neutral, PublicKeyToken=91d62ebb5b0d1b1b´
connectionStringName=´BlackfishSQLAspNet´
applicationName=´/´
enablePasswordRetrieval=´false´
enablePasswordReset=´true´
requiresQuestionAndAnswer=´true´
requiresUniqueEmail=´false´
passwordFormat=´Hashed´
maxInvalidPasswordAttempts=´50´
minRequiredPasswordLength=´8´
minRequiredNonalphanumericCharacters=´1´
passwordAttemptWindow=´10´
passwordStrengthRegularExpression=´´/>
</providers>
</membership>
<profile defaultProvider=´AspNetAdoProfileProvider´>
<providers>
<remove name=´AspNetAdoProfileProvider´/>
<add name=´AspNetAdoProfileProvider´
type=´Borland.Web.Profile.AdoProfileProvider, Borland.Web.Provider, Version=11.0.5000.0, Culture=neutral, PublicKeyToken=91d62ebb5b0d1b1b´
connectionStringName=´BlackfishSQLAspNet´
applicationName=´/´/>
</providers>
</profile>
<roleManager defaultProvider=´AspNetAdoRoleProvider´>
<providers>
<remove name=´AspNetAdoRoleProvider´/>
<add name=´AspNetAdoRoleProvider´
type=´Borland.Web.Security.AdoRoleProvider, Borland.Web.Provider, Version=11.0.5000.0, Culture=neutral, PublicKeyToken=91d62ebb5b0d1b1b´
connectionStringName=´BlackfishSQLAspNet´
applicationName=´/´/>
</providers>
</roleManager>
</system.web>
<system.webServer>
<validation validateIntegratedModeConfiguration=´false´/>
<modules>
<add name=´ScriptModule´ preCondition=´integratedMode´ type=´System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´/>
</modules>
<handlers>
<remove name=´WebServiceHandlerFactory-Integrated´ />
<add name=´ScriptHandlerFactory´ verb=´*´ path=´*.asmx´ preCondition=´integratedMode´
type=´System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´/>
<add name=´ScriptHandlerFactoryAppServices´ verb=´*´ path=´*_AppService.axd´ preCondition=´integratedMode´
type=´System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´/>
<add name=´ScriptResource´ preCondition=´integratedMode´ verb=´GET,HEAD´ path=´ScriptResource.axd´ type=´System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´ />
</handlers>
</system.webServer>
<appSettings>
<!--CONNECTION STRINGS
For Blackfish use PageCounterBlackfish
-->
<add key=´DatabaseAlias´ value=´PageCounterInterBase´ />
<add key=´TraceTimeRequest´ value=´on´ />
<add key=´SMTPServer´ value=´´ />
<add key=´MailNotification´ value=´´ />
</appSettings>
</configuration>
O mesmo está retornando, ao abrir qualquer tela o seguinte erro:
´sys não está definido´.
alguém sabe como resolver isso?
segue abaixo conteúdo do meu webconfig.
<?xml version=´1.0´?>
<configuration>
<configSections>
<sectionGroup name=´system.web.extensions´ type=´System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´>
<sectionGroup name=´scripting´ type=´System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´>
<section name=´scriptResourceHandler´ type=´System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´ requirePermission=´false´ allowDefinition=´MachineToApplication´/>
<sectionGroup name=´webServices´ type=´System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´>
<section name=´jsonSerialization´ type=´System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´ requirePermission=´false´ allowDefinition=´Everywhere´ />
<section name=´profileService´ type=´System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´ requirePermission=´false´ allowDefinition=´MachineToApplication´ />
<section name=´authenticationService´ type=´System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´ requirePermission=´false´ allowDefinition=´MachineToApplication´ />
</sectionGroup>
</sectionGroup>
</sectionGroup>
</configSections>
<!--CONNECTION STRINGS
The connection string defined below is the the default connection string used by the
ASP.NET Providers (Membership, Role, Profile). See the ASP.NET PROVIDER section below.
The BlackfishSQL RemoteClient provider will work best for development since it will
support connections from multiple processes. This allows the ASP.Net
configuration manager and the web application to be running at the same time.
For deployment, the BlackfishSQL LocalClient may be used to allow for zero configuration
deployment option. To deploy locally, comment out the first connection string, and
uncomment the second.
The |DataDirectory| macro refers to \app_data off of the main directory for the application.
-->
<connectionStrings>
<remove name=´BlackfishSqlAspNet´/>
<!-- Remote ConnectionString : Use the string below for connecting to the provider using the Remote client -->
<add name=´BlackfishSqlAspNet´ connectionString=´database=|DataDirectory|bsql_aspnetdb.jds;protocol=TCP;host=localhost;user=SYSDBA;password=masterkey;create=true´ providerName=´Borland.Data.BlackfishSQL.RemoteClient´/>
<!-- Local ConnectionString : Use the string below for connecting to the provider using the local client -->
<!-- <add name=´BlackfishSqlAspNet´ connectionString=´database=|DataDirectory|bsql_aspnetdb.jds;user=SYSDBA;password=masterkey;create=true´ providerName=´Borland.Data.BlackfishSQL.LocalClient´/> -->
</connectionStrings>
<system.data>
<!-- ADDING THE DATA PROVIDER TO THE HOSTING SERVICE
The following tag will install the Blackfish Data Provider on the hosting service.
The <remove> tag is present to ensure that the application will work at design-time and
on your local machine. The entry is not present on a hosting service, but it is present on
your local machine. However, the entry can´t be duplicated, so in order to have things work on
your local machine, the duplication is avoided by removing the entry, and then adding it back again.
-->
<DbProviderFactories>
<remove invariant=´Borland.Data.BlackfishSQL.LocalClient´ />
<add name=´BlackfishSQL Local Provider´ invariant=´Borland.Data.BlackfishSQL.LocalClient´ description=´Provider with inprocess database Server´
type=´Borland.Data.DataStore.DataStoreProviderFactory, Borland.Data.BlackfishSQL.LocalClient, Version=2.0.0.0, Culture=neutral, PublicKeyToken=91d62ebb5b0d1b1b´/>
</DbProviderFactories>
</system.data>
<system.web>
<customErrors defaultRedirect=´Errorpage.aspx´ mode=´RemoteOnly´ />
<pages theme=´Summer´ pageBaseType=´BasePage.TBasePage´>
<controls>
<add tagPrefix=´asp´ namespace=´System.Web.UI´ assembly=´System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´/>
</controls>
</pages>
<!--
Set compilation debug=´true´ to insert debugging
symbols into the compiled page. Because this
affects performance, set this value to true only
during development.
-->
<compilation defaultLanguage=´c#´ >
<assemblies>
<add assembly=´System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´/>
<!-- BORLAND DEBUG KERNEL
The httpModule Borland.DbkAsp.DbkConnModule is required for debugging under IIS.
This module may be installed in web.config or machine.config, but not both.
Move the following line outside this comment to install.
<add assembly=´Borland.dbkasp, Version=10.5.0.0, Culture=neutral, PublicKeyToken=b0524c541232aae7´/>
-->
</assemblies>
</compilation>
<httpHandlers>
<remove verb=´*´ path=´*.asmx´/>
<add verb=´*´ path=´*.asmx´ validate=´false´ type=´System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´/>
<add verb=´*´ path=´*_AppService.axd´ validate=´false´ type=´System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´/>
<add verb=´GET,HEAD´ path=´ScriptResource.axd´ type=´System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´ validate=´false´/>
</httpHandlers>
<httpModules>
<add name=´ScriptModule´ type=´System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´/>
<!-- BORLAND DEBUG KERNEL
The httpModule Borland.DbkAsp.DbkConnModule is required for debugging under IIS.
This module may be installed in web.config or machine.config, but not both.
Move the following line outside this comment to install.
<add name=´DbgConnect´ type=´Borland.DbkAsp.DbkConnModule,Borland.dbkasp,Version=10.5.0.0, Culture=neutral, PublicKeyToken=b0524c541232aae7´/>
-->
</httpModules>
<!--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>
<!--AUTHENTICATION
This section sets the authentication policies of the application. Possible modes are ´Windows´, ´Forms´,
´Passport´ and ´None´
<authentication mode=´Forms´ />
-->
<authentication mode=´Forms´ />
<!--APPLICATION-LEVEL TRACE LOGGING
Application-level tracing enables trace log output for every page within an application.
Set trace enabled=´true´ to enable application trace logging. If pageOutput=´true´, the
trace information will be displayed at the bottom of each page. Otherwise, you can view the
application trace log by browsing the ´trace.axd´ page from your web application
root.
-->
<trace
enabled=´false´
requestLimit=´10´
pageOutput=´false´
traceMode=´SortByTime´
localOnly=´true´
/>
<!--SESSION STATE SETTINGS
By default ASP .NET uses cookies to identify which requests belong to a particular session.
If cookies are not available, a session can be tracked by adding a session identifier to the URL.
To disable cookies, set sessionState cookieless=´true´.
-->
<sessionState
mode=´InProc´
stateConnectionString=´tcpip=127.0.0.1:42424´
sqlConnectionString=´data source=127.0.0.1;user id=sa;password=´
cookieless=´false´
timeout=´20´
/>
<!--GLOBALIZATION
This section sets the globalization settings of the application.
-->
<globalization
requestEncoding=´utf-8´
responseEncoding=´utf-8´
/>
<!--ASP.NET PROVIDERS
The following section registers replacement ASP.Net providers which
Use BlackfishSQL as the default database.
-->
<membership defaultProvider=´AspNetAdoMembershipProvider´>
<providers>
<remove name=´AspNetAdoMembershipProvider´/>
<add name=´AspNetAdoMembershipProvider´
type=´Borland.Web.Security.AdoMembershipProvider, Borland.Web.Provider, Version=11.0.5000.0, Culture=neutral, PublicKeyToken=91d62ebb5b0d1b1b´
connectionStringName=´BlackfishSQLAspNet´
applicationName=´/´
enablePasswordRetrieval=´false´
enablePasswordReset=´true´
requiresQuestionAndAnswer=´true´
requiresUniqueEmail=´false´
passwordFormat=´Hashed´
maxInvalidPasswordAttempts=´50´
minRequiredPasswordLength=´8´
minRequiredNonalphanumericCharacters=´1´
passwordAttemptWindow=´10´
passwordStrengthRegularExpression=´´/>
</providers>
</membership>
<profile defaultProvider=´AspNetAdoProfileProvider´>
<providers>
<remove name=´AspNetAdoProfileProvider´/>
<add name=´AspNetAdoProfileProvider´
type=´Borland.Web.Profile.AdoProfileProvider, Borland.Web.Provider, Version=11.0.5000.0, Culture=neutral, PublicKeyToken=91d62ebb5b0d1b1b´
connectionStringName=´BlackfishSQLAspNet´
applicationName=´/´/>
</providers>
</profile>
<roleManager defaultProvider=´AspNetAdoRoleProvider´>
<providers>
<remove name=´AspNetAdoRoleProvider´/>
<add name=´AspNetAdoRoleProvider´
type=´Borland.Web.Security.AdoRoleProvider, Borland.Web.Provider, Version=11.0.5000.0, Culture=neutral, PublicKeyToken=91d62ebb5b0d1b1b´
connectionStringName=´BlackfishSQLAspNet´
applicationName=´/´/>
</providers>
</roleManager>
</system.web>
<system.webServer>
<validation validateIntegratedModeConfiguration=´false´/>
<modules>
<add name=´ScriptModule´ preCondition=´integratedMode´ type=´System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´/>
</modules>
<handlers>
<remove name=´WebServiceHandlerFactory-Integrated´ />
<add name=´ScriptHandlerFactory´ verb=´*´ path=´*.asmx´ preCondition=´integratedMode´
type=´System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´/>
<add name=´ScriptHandlerFactoryAppServices´ verb=´*´ path=´*_AppService.axd´ preCondition=´integratedMode´
type=´System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´/>
<add name=´ScriptResource´ preCondition=´integratedMode´ verb=´GET,HEAD´ path=´ScriptResource.axd´ type=´System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35´ />
</handlers>
</system.webServer>
<appSettings>
<!--CONNECTION STRINGS
For Blackfish use PageCounterBlackfish
-->
<add key=´DatabaseAlias´ value=´PageCounterInterBase´ />
<add key=´TraceTimeRequest´ value=´on´ />
<add key=´SMTPServer´ value=´´ />
<add key=´MailNotification´ value=´´ />
</appSettings>
</configuration>
Saulopms
Curtidas 0