Configuring - Other web.config settings

From Visual WebGui Wiki

Jump to: navigation, search

Contents

Overview

This article is a part of articles on Configuring Visual WebGui application.

In this part you will find information on other web.config settings that are not part of the Visual WebGui inegration Tabs, but still affect your application and provide extra features or flexibility.

Settings

Session state

Default value web.config Description
Session state
InProc
<system.web>
   <sessionState mode="InProc" 
       stateConnectionString="tcpip=127.0.0.1:42424" 
       sqlConnectionString="data source=127.0.0.1;
       Trusted_Connection=yes" 
       cookieless="false"
       timeout="20" />
</system.web>



See also

Forum discussions


Custom errors

Default value web.config Description
Custom errors
RemoteOnly
<system.web>
   <customErrors mode="RemoteOnly" />
</system.web>




Custom HTTP handlers

Default value web.config Description
Custom HTTP handlers





Personal tools