| Name | Description |
|---|---|
| Extended Controls 5/30/2008 | Extended controls are a few special purpose controls that are included with the Control Framework. These are probably not frequently used but can come in handy in many situations. |
| wwWebTabControl::OnClientActivate 5/30/2008 | Allows you to specify a JavaScript handler that is called when a page is activated. The handler is passed the tab index number. |
| Class wwWebTabControl 5/30/2008 | The wwWebTabControl is an easy to use TabStrip control that allows you to break large amounts of content into separate pages. The control works via client script to manage and activate specified HTML containers dynamically when a tab page is selected. To specify tab 'pages' that are to be activated on tab clicks you specify a client DOM id for the element to be shown or hidden appropriately. |
| How the wwWebTabControl works 5/30/2008 | The wwWebTabControl allows you to create large content on a single page and mange that input more efficiently via separate tab pages. This control works on the client side and simply allows you to enable and disable display of each of the page, but all content that loaded when the page initially starts. All content is live on the page. |
| Databinding Errors and the wwWebTabControl 5/30/2008 | When databinding errors display on controls that are on a tab page you have a special issue in that controls that have errors on them may not be visible. The error list shows links to activate the error controls, but clicking links will not do anything if the controls are hidden because the link sets focus, but takes no action to make the control visible. To work around this issue you can implement a JavaScript function OnBindingErrorLink to intercept link clicks and activate the appropriate page explicitly. |
| Class wwWebPage 5/30/2008 | The wwWebPage class is the top level container for a WebControl page. This container acts as the entry point for event processing and provides the HTML Document for page generation. |
| Class wwWebControl 5/30/2008 | The wwWebControl class is the base controls for all other controls in the Web Connection WebControl framework. It provides the core functionality for most controls. |
| Web Control Reference 5/30/2008 | The Web Control framework comes with a number of stock controls and this section is a reference to these controls. |
| What's new 5/30/2008 | Version 5.365/20/2008 |
| wwWebControl::ToolTip 5/30/2008 | Sets the pop up tooltip for the control as set by title= on most controls |
| wwWebControl::Text 5/30/2008 | The 'value' of the control. This is the primary value used for display and assignment. |
| wwWebControl::ControlSourceMode 5/30/2008 | Determines how the ControlSource is applied for inbound and outbound binding. |
| wwWebControl::ControlSourceUnbindExpression 5/30/2008 | This optional property allows you to explicitly specify a separate ControlSource expression for unbinding back into the underlying data source. Use this if you need to bind to methods rather than properties or to read and write into separate underlying properties. |
| West Wind Web Connection 5/30/2008 | |
| wwWebPage::AddBindingError 5/30/2008 | Adds a binding error to the page's BindingErrors collection. |
| wwWebPage::Render 5/28/2008 | Renders the Page by rendering the page and all of its contained components. |
| Visual Studio Configuration and Operation 5/28/2008 | In order to utilize Web Connection Web Control Framework pages in Visual Studio 2005 or Visual Web Developer there are a few configuration settings and files that need to be copied. |
| User Guide 5/28/2008 | The user guide outlines the basic operation of Web Connection. |
| Setting Up Web Connection 5/28/2008 | The first step in getting going with Web Connection is to install the product. Web Connection ships as a self-extracting zip file that you either download from the Web or comes on a CD. |
| Manually configuring Microsoft Web Servers 5/28/2008 | Web Connection includes a host of tools for configuring your Web Site they consist of:
|
| Windows 2003 Server Configuration 5/28/2008 | Web Connection intrinsicly supports Windows Server 2003 with special setup options for IIS 6. Make sure you select IIS 6 when creating applications and configuring Web sites as operation under COM requires certain additional settings to be set namely a custom Application Pool configuration. If you are creating applications with any of the Wizards and tools Web Connection provides, the appropriate configuration settings are made automatically when choosing IIS 6 and later. |
| Windows Vista and Windows Server 2008 Configuration 5/28/2008 | Web Connection 5.0 is ready for operation under Windows Vista and Windows Longhorn Server and when installed will automatically configure itself for operation under these OSs. There are also tools that provide configuration for new projects and existing installations. |
| The Setup program 5/28/2008 | Go to Step 1 The setup program guides you through the first time configuration of Web Connection for your Web server. The setup process performs the following tasks automatically. For reference I also mention how you can configure these things manually. |
| Web Connection Configuration 5/28/2008 | This section discusses a number of features of Web Connection in detail. Many of these topics were introduced in other places - this section serves as a more detailed and complete reference for specific features and operations. |
| Deploying your Web Connection Application 5/28/2008 | This section covers topics of the issues involved in installing a Web Connection application on a live Web Server. This process usually consists of:
|
| Configuration Files 5/28/2008 | Web Connection is configured through a few configuration files. These files configure each of Web Connection's components for communication with each other. The following files are used: |
| The Web Connection HTML Administration Page 5/28/2008 | Most administrative features of Web Connection are accessible through an HTML form that provides links to various system tasks. |
| The Server User Interface 5/28/2008 | For the most part Web Connection is a developer tool where you write code. However, there are a few administrative features that are provided through several user interface services: |
| The Web Connection Management Console 5/28/2008 | The Web Connection Management control allows you create new Web Connection project and update existing applications with new process classes. You can also use the Console to configure a server for operation with an already built Web Connection application. |
| The wconnect.h file 5/28/2008 | The wconnect.h file contains a large variety of settings that control how Web Connection works. wconnect.h is required by almost every code module in the framework. It's highly recommended that you include wconnect.h with your code as well. |
| wwWebRepeater::IsAlternatingItem 5/28/2008 | Flag that determines if during rendering an alternating item is active. |
| Configuring Visual Studio .NET 5/27/2008 | Web Connection will automatically configure itself for operation with Visual Studio if you use the Web Connection installation and create new projects with the new project Wizard. The wizards will ensure that the default templates and the Add-in get installed properly as well as configuring your Web.Config file for you. |
| Framework Support classes 5/27/2008 | The framework support classes handle support to the core classes that the Web Connection framework provides. For the most part these are utility classes, that provide useful functionality ontop the base features, but several like the wwConfig and wwSession objects are actually tightly linked to the framework as support classes. |
| Upgrading from Version 4.0 5/27/2008 | Upgrades from Version 4.0 should be relatively painless as Web Connection 5.0 for the most part maintains backwards compatibility with Version 4.0. However, in order to take advantage of Web Connection 5.0 features there are a few things that you should do to optimize your applications and allow them to integrate with new tools and the new Web Control Framework. |
| Class wwCodeUpdate 5/22/2008 | The wwCodeUpdate class can be used in Fat Client applications to perform application updates over the Web. The class provides the version checking tools to check against an XML version resource file, the ability to download the update and the ability to swap out the running application by executing a script file to update the running application file and any others that might have changed. |