Hi,
I am creating reports over the intranet using ASP and am a beginner with it.
1. Created a form to get data using ASP
2. Created an Asp to call the dll file when all the data are validated and would return the result. I get the following error when I place a call to the dll file.
Error Type:
Server object, ASP 0177 (0x800401F3)
Invalid ProgID. For additional information specific to this message please visit the Microsoft Online Support site located at: /aeReports/reports/Active Purchase Order/createactpurchaseOrder.asp, line 53.
In which directory should the dll and the class modules be located. I have pasted the code in which I get an error. Any help would be appreciated.
<!--#include file="../../includes/setStyleSheet.inc"-->
<%
'On Error Resume Next
Dim iis
Dim iie
Dim fcs
Dim fce
Dim fds
Dim fde
Dim pods
Dim pode
Dim rds
Dim rde
Dim ads
Dim ade
Dim ppo
Dim fpo
Dim cosell
Dim bilnote
Dim history
Dim cid
Dim rptName
cid = request.form("clientId")
iis = request.form("item_id_start")
iie = request.form("item_id_end")
fcs = request.form("followup_code_Start")
fce = request.form("followup_code_end")
fds = request.form("fDate_start")
fde = request.form("fDate_end")
pods = request.form("poDate_start")
pode = request.form("poDate_end")
rds = request.form("rDate_start")
rde = request.form("rDate_end")
ads = request.form("aDate_start")
ade = request.form("aDate_End")
ppo = request.form("partialpo")
fpo = request.form("fullpo")
cosell = request.form("costsell")
bilnote = request.form("billnotes")
history = request.form("hist")
rptName = "Active Purchase Orders"
%>
<html>
<head>
<title>AE Litho Active Purchase Orders</title>
<link rel="stylesheet" type="text/css" href="<% Response.Write sSheet %>" title="defaultStyle"/>
</head>
<body style="margin-top:0px" alink="blue" vlink="blue">
<%
Set objRep = Server.CreateObject("actpo.apo")
Set xml = Server.CreateObject("MSXML2.DomDocument.4.0")
xml.async = false
xml.loadxml objRep.apo(cid,iis,iie,fcs,fce,fds,fde,pods,pode,rds,rde, ads,ade,ppo,fpo,cosell,bilnote,history,Request.ServerVariables("REMOTE_ADDR"))
If (xml.parseError = 0) then
Set xsl = Server.CreateObject("MSXML2.DomDocument.4.0")
xsl.load ("C:\Inetpub\aeReports\reports\Active Purchase Order\actpurchaseOrder.xsl")
<!--Server.MapPath("actpurchaseOrder.xsl")-->
Set cNode = xml.selectSingleNode("//Error")
If not cNode is nothing then
Response.Write cNode.transformNode(xsl)
Else
xml.setProperty "SelectionNamespaces", "xmlns:rs='urn:schemas-microsoft-com:rowset'"
Set cNode = xml.selectSingleNode("//rs:data")
Response.Write cNode.transformNode(xsl)
End If
Else
Err.Number = xml.parseError.errorCode
Err.Description = xml.parseError.reason
End If
Set xml = Nothing
Set xsl = Nothing
Set objRep = Nothing
%>
</body>
</html>
<%
If Err.Number <> 0 Then
Response.Clear
%>
<HTML>
<head><title>AE Litho Active Purchase Orders</title></head>
<BODY BGCOLOR="#C0C0C0">
<FONT FACE="ARIAL">
An error occurred in the execution of this ASP page
<BR>
<B>Page Error Object</B>
<BR>
Error Number: <%= Err.Number %>
<BR>
Error Description: <%= Err.Description %>
<BR>
Source: <%= Err.Source %>
<BR>
LineNumber: <%= Err.Line %>
<BR>
</FONT>
</BODY>
</HTML>
<%End If%>
<script language="JavaScript">
function exportReport(val){
var elm = document.getElementById("expType");
elm.value = val
document.forms['exportForm'].submit();
}
</script>
Thanks
I am creating reports over the intranet using ASP and am a beginner with it.
1. Created a form to get data using ASP
2. Created an Asp to call the dll file when all the data are validated and would return the result. I get the following error when I place a call to the dll file.
Error Type:
Server object, ASP 0177 (0x800401F3)
Invalid ProgID. For additional information specific to this message please visit the Microsoft Online Support site located at: /aeReports/reports/Active Purchase Order/createactpurchaseOrder.asp, line 53.
In which directory should the dll and the class modules be located. I have pasted the code in which I get an error. Any help would be appreciated.
<!--#include file="../../includes/setStyleSheet.inc"-->
<%
'On Error Resume Next
Dim iis
Dim iie
Dim fcs
Dim fce
Dim fds
Dim fde
Dim pods
Dim pode
Dim rds
Dim rde
Dim ads
Dim ade
Dim ppo
Dim fpo
Dim cosell
Dim bilnote
Dim history
Dim cid
Dim rptName
cid = request.form("clientId")
iis = request.form("item_id_start")
iie = request.form("item_id_end")
fcs = request.form("followup_code_Start")
fce = request.form("followup_code_end")
fds = request.form("fDate_start")
fde = request.form("fDate_end")
pods = request.form("poDate_start")
pode = request.form("poDate_end")
rds = request.form("rDate_start")
rde = request.form("rDate_end")
ads = request.form("aDate_start")
ade = request.form("aDate_End")
ppo = request.form("partialpo")
fpo = request.form("fullpo")
cosell = request.form("costsell")
bilnote = request.form("billnotes")
history = request.form("hist")
rptName = "Active Purchase Orders"
%>
<html>
<head>
<title>AE Litho Active Purchase Orders</title>
<link rel="stylesheet" type="text/css" href="<% Response.Write sSheet %>" title="defaultStyle"/>
</head>
<body style="margin-top:0px" alink="blue" vlink="blue">
<%
Set objRep = Server.CreateObject("actpo.apo")
Set xml = Server.CreateObject("MSXML2.DomDocument.4.0")
xml.async = false
xml.loadxml objRep.apo(cid,iis,iie,fcs,fce,fds,fde,pods,pode,rds,rde, ads,ade,ppo,fpo,cosell,bilnote,history,Request.ServerVariables("REMOTE_ADDR"))
If (xml.parseError = 0) then
Set xsl = Server.CreateObject("MSXML2.DomDocument.4.0")
xsl.load ("C:\Inetpub\aeReports\reports\Active Purchase Order\actpurchaseOrder.xsl")
<!--Server.MapPath("actpurchaseOrder.xsl")-->
Set cNode = xml.selectSingleNode("//Error")
If not cNode is nothing then
Response.Write cNode.transformNode(xsl)
Else
xml.setProperty "SelectionNamespaces", "xmlns:rs='urn:schemas-microsoft-com:rowset'"
Set cNode = xml.selectSingleNode("//rs:data")
Response.Write cNode.transformNode(xsl)
End If
Else
Err.Number = xml.parseError.errorCode
Err.Description = xml.parseError.reason
End If
Set xml = Nothing
Set xsl = Nothing
Set objRep = Nothing
%>
</body>
</html>
<%
If Err.Number <> 0 Then
Response.Clear
%>
<HTML>
<head><title>AE Litho Active Purchase Orders</title></head>
<BODY BGCOLOR="#C0C0C0">
<FONT FACE="ARIAL">
An error occurred in the execution of this ASP page
<BR>
<B>Page Error Object</B>
<BR>
Error Number: <%= Err.Number %>
<BR>
Error Description: <%= Err.Description %>
<BR>
Source: <%= Err.Source %>
<BR>
LineNumber: <%= Err.Line %>
<BR>
</FONT>
</BODY>
</HTML>
<%End If%>
<script language="JavaScript">
function exportReport(val){
var elm = document.getElementById("expType");
elm.value = val
document.forms['exportForm'].submit();
}
</script>
Thanks