GoogleControl |
|
Concept | Presentation | Install | Use | Internals |
GoogleControl installation guideDownloadYou can download GoogleControl from here. The archive contains three directories, GoogleControl, GoogleControl2 and GoogleTest. GoogleControlContains the HTTP and the include implementations. The table below describes the most important files.
The directory also contains:
GoogleControl2Contains the ASP.NET implementation. The table below describes the most important files.
The directory also contains:
GoogleTestContains an example of page using the HTTP implementation. The table below describes the most important files.
See the internals page for more explanations. Installation of the HTTP controlInflate the following files of the archive’s GoogleControl directory on an IIS virtual directory:
ASP.NET must be installed on the IIS machine and the GoogleControl virtual directory must be configured as an application:
The pages that use the HTTP control can be in different directories, even on different machines or on different Application servers (PHP or J2EE). Installation of the Include controlInflate the following files of the archive’s GoogleControl directory on the same directory as pages that include the control:
For an installation through PageBox, you can configure the installation script to populate the directories of the pages that include the control. Note: You can also need to merge the Global.asax of the target directories with the control’s Global.asax. In that case it can be simpler to add the Global.asax.cs code to GoogleInclude.aspx.cs: public class GoogleInclude : System.Web.UI.Page { public static Hashtable pages = new Hashtable(); public static void initialize(string referer, string path, bool checkRemote) { // Initialize code from Global.asax.cs } } public sealed class RefererItem { // RefererItem from Global.asax.cs } Then recompile. Installation of the ASP.NET controlInflate the following files of the archive’s GoogleControl2 directory on the same directory as pages that include the control:
Contact:support@pagebox.net |
|