We are using Visual Studio 2005 for development. We developed a web application using ASP.NET and Ajax Extension (Language : VB).
Due to some time limitation some of the modules we had to pick from our Client Server Application (VB 6.0) which was already available and was in use for last 3-4 years. We converted them to Activex controls and used them in the web forms.
These activex controls are not getting downloaded to the client PC’s from the server when users access it. It is showing only a small box in the place. We tried to manually registered all components required in the client PC’s but still it shows the same page. It is working fine from the source code. The activex components access the database in the server.
ASP Page Source is given below:
<%@ Page Language="VB" MasterPageFile="~/WarrantyMaster.master" AutoEventWireup="false" CodeFile="DailyClaim.aspx.vb" Inherits="DailyClaim" title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<asp:ScriptManager id="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel id="UpdatePanel1" runat="server">
<contenttemplate>
<OBJECT ID="DailyClaimsReport" CLASSID="CLSID:46818DE1-EA72-4455-A32C-9F0216103EFD"
CODEBASE="\BIN\OCX\PRJDAILYCLIAM.CAB#version=1,0,0,0">
</OBJECT>
</contenttemplate>
</asp:UpdatePanel>
</asp:Content>