Hi,
I am developing a Web Application and I would like to open the LaserFiche client when the user selects a Document from the browser. Everything works perfect, but the LF client is opening in the Server. I want the client to be opened in the client where the user selects the Document in the browser. I have LF client installed in the client computer also. I am not sure how to achieve this. See the code I used below.
/// <summary> /// View Laser Fiche Image /// </summary> /// <param name="ImageId">Laser Fiche Image Id</param> public void ViewImage(int ImageId) { ImageEnable ImageClass = new ImageEnable(); if (!ImageClass.IsLaserFicheOpen()) { ImageClass.LoadLaserFiche(false); ImageClass.Login(istrRepositoryName, istrServerName, istrUserName, istrPassword); } ImageClass.ViewPage(ImageId, 1); return; }
Please help me.
Raja