These forums are read-only and considered to be an archive. Please use the new Community for future interaction and posts.

How to activate FileVista Control

Just purchased FileVista Control and received Key.  How do you activate the control?
Jesse Garcia 7/2/2008 3:28 PM
Thanks for your purchase.
Unlocking the control is shown in the examples which comes with the control.

Please set the LicenseKey property of the control to the license key you have received.

    <GleamTech:FileVistaControl ID="FileVistaControl" runat="server" 
 LicenseKey="4N/d/kw63GneYmb86cvVO6+NCoEo+DNjmU7j8Ey5a9g=">

If you are adding the control programmatically then assign licensekey property to your license key like:

FileVistaControl fileVistaControl = (FileVistaControl)LoadControl("~/FileVistaControl/filevista.ascx");

fileVistaControl.LicenseKey = "4N/d/kw63GneYmb86cvVO6+NCoEo+DNjmU7j8Ey5a9g=";

If the control is still in trial mode then the application should be restarted, you may be using a web site project and thus a change to one page did not cause a restart. Please restart the application manually by opening and saving the web.config file. Then you will see that the control will recognize the license key.
Cem Alacayir 7/3/2008 8:37 PM