CodeCharge Studio
search Register Login  

Web Reports

Visually create Web Reports in PHP, ASP, .NET, Java, Perl and ColdFusion.
CodeCharge.com

YesSoftware Forums -> Help/Consulting -> Help - Jobs Wanted

 IT Manager

Print topic Send  topic

Author Message
Travis
Posted: 02/16/2005, 10:07 AM

I have a report that was custom built for us and I am wanting to learn how to create them, but to start with I just need to get a report converted to CCS and see what it looks like, if possible. I can't post the report here because it utilizes 4 .asp files (vbscript) and want to see if anyone is interested in giving me a bid. Just so you know ahead of time. I would not be able to send the database that the report connects to because it is over 650 tables (sql Server) but could send samples of a current report and such. Thanks. I will post the code from one of the files below and see how it goes:

<%@ Language=VBScript %>
<!--#include file="../include/i_dbconnect.asp" -->
<!--#include file="../include/i_baseURL.asp" -->

<%
REM Dim Variables
rem DIM IntLaborHours,IntWOID,IntWOID2,IntSumLaborID
CreateDBConnection()

REM Get Data
CommandObject.CommandText = "wip_actvsest"
CommandObject.CommandType = 4
Set RSQry = CommandObject.Execute()

CloseDBConnection()

strTitle = "Actual vs Estimated " & date
%>
<%
'The const's are For the colors and the Flag is needed
Const sPrimaryColor = "WHITE"
Const sSecondaryColor = "CCCCCC"
Dim bColorFlag
Dim lCounter
'This function does all the work For you.
function LineColor()
bColorFlag = Not bColorFlag
if bColorFlag Then
LineColor = sPrimaryColor
Else
LineColor = sSecondaryColor
End if
End function
%>
<html>
<head>
<title>Picosecond Pulse Labs, Work Order Report <%=strTitle%></title>
<link REL="STYLESHEET" TYPE="text/css" HREF="/include/styles.css">
</head>
<body BGCOLOR="white" topmargin="0" leftmargin="0" marginwidth="0" marginheight="0">
<table width="800" border="0" cellpadding="0" cellspacing="0" ID="Table1">
<!-- TOP NAV -->
<!--#include file="../include/i_topnav.asp" -->
<!-- END TOP NAV -->
<tr>
<td background="/images/left_vert18x8.jpg" width="18"></td>
<td width="10"><!-- spacer column --> </td>
<!-- Main Content Cell -->
<td width="772">
<table width="772" cellpadding="2" cellspacing="0" border="0" ID="Table2">
<tr>
<td colspan="3"> </td>
</tr>
<tr>
<!--#include file="../include/i_leftnav.asp" -->
<td width="15"> </td>
<td valign="top" align="left">

<table width="100%" cellpadding="0" cellspacing="0" border="0" ID="Table3">
<tr>
<td>
<span class="header">Inventory Transactions with Actual Vs Estimated Cost</span>
<hr size="2" width="100%" color="#6B0CAA" align="left"><p>
</td>
</tr>
<tr>
<td>
<a href="estvsact_print.asp">View printable version</a><p>
</td>
</tr>
<%If not RSQry.eof then%>
<tr>
<td>
<table width="100%" cellpadding="4" cellspacing="0" border="1" bordercolor="black" ID="Table4">
<tr bgcolor="999999">
<td valign="top" width="6%"><b><font size="1">Trans ID</font></b></td>
<td valign="top" width="15%"><b><font size="1">WO_BASE_ID</font></b></td>
<td valign="top" width="6%"><b><font size="1">PART_ID</font></b></td>
<td valign="top" width="6%"><b><font size="1">ENG MSTR QTY</font></b></td>
<td valign="top" width="6%"><b><font size="1">QTY</font></b></td>
<td valign="top" width="24%"><b><font size="1">Trans_Date</font></b></td>
<td valign="top" width="6%"><b><font size="1">Act Total</font></b></td>
<td valign="top" width="15%"><b><font size="1">Est Total</font></b></td>
<td valign="top" width="6%"><b><font size="1">Material Cost</font></b></td>
<td valign="top" width="10%"><b><font size="1">Est. Material Cost</font></b></td>
<td valign="top" width="6%"><b><font size="1">Labor Cost</font></b></td>
<td valign="top" width="6%"><b><font size="1">Est. Labor Cost</font></b></td>
<td valign="top" width="6%"><b><font size="1">Service Cost</font></b></td>
<td valign="top" width="6%"><b><font size="1">Est. Service Cost</font></b></td>
<td valign="top" width="6%"><b><font size="1">Burden Cost</font></b></td>
<td valign="top" width="6%"><b><font size="1">Est. Burden Cost</font></b></td>
<td valign="top" width="6%"><b><font size="1">Unit Cost</font></b></td>
<td valign="top" width="6%"><b><font size="1">Est. Unit Cost</font></b></td>
<td valign="top" width="6%"><b><font size="1">Variance</font></b></td>
<td valign="top" width="6%"><b><font size="1">Percentage of Estimate</font></b></td>
</tr>
<%

DO while not RSQry.eof



TRANS_ID=RSQry("TRANS_ID")
WORKORDER_BASE_ID=RSQry("WORKORDER_BASE_ID")
PART_ID= RSQry("PART_ID")
ENG_MASTER_QTY= RSQry("ENG")
QTY= RSQry("QTY")
Trans_Date= RSQry("Trans_Date")
Act_Total= RSQry("Act_Total")
Est_Total= RSQry("Est_Total")
ACT_MATERIAL_COST = RSQry("ACT_MATERIAL_COST")
EST_MATERIAL_COST= RSQry("EST_MATERIAL_COST")
ACT_LABOR_COST= RSQry("ACT_LABOR_COST")
EST_LABOR_COST= RSQry("EST_LABOR_COST")
ACT_SERVICE_COST= RSQry("ACT_SERVICE_COST")
EST_SERVICE_COST=RSQry("EST_SERVICE_COST")
ACT_BURDEN_COST=RSQry("ACT_BURDEN_COST")
EST_BURDEN_COST=RSQry("EST_BURDEN_COST")
Variance=RSQry("Variance")
Act_Unit_Cost=RSQry("Act_Unit_Cost")
Est_Unit_Cost=RSQry("Est_Unit_Cost")
PERC_of_EST=RSQry("PERC_of_EST")



Response.write "<tr bgcolor='" & LineColor & "' id='" & lCounter & "'><td><font size=""1""" & strFontColor & ">" & TRANS_ID & "</td><td><font size=""1""" & strFontColor & ">" & WORKORDER_BASE_ID & " </td><td><font size=""1""" & strFontColor & ">" & PART_ID & " </td><td><font size=""1""" & strFontColor & ">"
Response.write ENG_MASTER_QTY & " </td><td><font size=""1""" & strFontColor & ">" & QTY & " </td><td><font size=""1""" & strFontColor & ">" & Trans_Date & " </td><td><font size=""1""" & strFontColor & ">"
Response.write Act_Total & " </td><td><font size=""1""" & strFontColor & ">" & Est_Total & " </td><td><font size=""1""" & strFontColor & ">"
Response.write ACT_MATERIAL_COST & " </td><td><font size=""1""" & strFontColor & ">" & EST_MATERIAL_COST & " </td><td><font size=""1""" & strFontColor & ">" & ACT_LABOR_COST & " </td><td><font size=""1""" & strFontColor & ">"
Response.write EST_LABOR_COST & " </td><td><font size=""1""" & strFontColor & ">" & ACT_SERVICE_COST & " </td><td><font size=""1""" & strFontColor & ">" & EST_SERVICE_COST & " </td><td><font size=""1""" & strFontColor & ">"
Response.write ACT_BURDEN_COST & " </td><td><font size=""1""" & strFontColor & ">" & EST_BURDEN_COST & " </td><td><font size=""1""" & strFontColor & ">" & Act_Unit_Cost & " </td><td><font size=""1""" & strFontColor & ">"
Response.write Est_Unit_Cost & " </td><td><font size=""1""" & strFontColor & ">" & Variance & " </td><td><font size=""1""" & strFontColor & ">" & PERC_of_EST & " </td><t/r>"

RSQry.Movenext
loop
IF RSQry.Eof then
response.write "<tr><td Colspan=""7"" BGCOLOR=""#FFFFFF""><b> </b></td><td><b></b></td><td><b>" &"</b></td><td><b>" &"</b></td><td Colspan=""1"" BGCOLOR=""#FFFFFF""></td></tr>"
END IF
%>

</table>
</td>
</tr>
<% else
REM no assets exist%>
<tr>
<td><font color="red"><b>There are currently no records.</b>

<p><hr size="2" width="100%" color="#6B0CAA">
</td>
</tr>
<tr><td> </td></tr>
<% end if%>
<tr><td> </td></tr>
</table>
</td>
</tr>
</table>
</td>
<!-- END MAIN CONTENT CELL -->
</tr>
</table>
<!--#include file="../include/i_footer.asp" -->
</body>
</html>
Travis
Posted: 02/16/2005, 10:09 AM

That looks like it posted well so I will enclose the second part to the one. The other two files are for the database connection. So here is file 2 entitled estvsact_print.asp:
<%@ Language=VBScript %>
<% Response.ContentType = "application/vnd.ms-excel"
Response.Buffer = TRUE
%>
<!--#include file="../include/i_dbconnect.asp" -->
<!--#include file="../include/i_baseURL.asp" -->

<%
REM Dim Variables

CreateDBConnection()

REM Get Data
CommandObject.CommandText = "wip_actvsest"
CommandObject.CommandType = 4
Set RSQry = CommandObject.Execute()

CloseDBConnection()

strTitle = "Actual vs Estimated Cost" & date
%>
<%
'The const's are For the colors and the Flag is needed
Const sPrimaryColor = "WHITE"
Const sSecondaryColor = "CCCCCC"
Dim bColorFlag
Dim lCounter
'This function does all the work For you.
function LineColor()
bColorFlag = Not bColorFlag
if bColorFlag Then
LineColor = sPrimaryColor
Else
LineColor = sSecondaryColor
End if
End function
%>
<html>
<head>
<title>Picosecond Pulse Labs, <%=strTitle%></title>
<link REL="STYLESHEET" TYPE="text/css" HREF="/include/styles.css">
</head>
<body BGCOLOR="white" topmargin="0" leftmargin="0" marginwidth="0" marginheight="0">

<%If not RSQry.eof then%>
<table width="100%" cellpadding="4" cellspacing="0" border="1" bordercolor="black" ID="Table4">
<tr bgcolor="999999">
<td valign="top" width="6%"><b><font size="2">Trans ID</font></b></td>
<td valign="top" width="15%"><b><font size="2">WO_BASE_ID</font></b></td>
<td valign="top" width="6%"><b><font size="2">PART_ID</font></b></td>
<td valign="top" width="6%"><b><font size="2">ENG</font></b></td>
<td valign="top" width="6%"><b><font size="2">QTY</font></b></td>
<td valign="top" width="24%"><b><font size="2">Trans_Date</font></b></td>
<td valign="top" width="6%"><b><font size="2">Act Total</font></b></td>
<td valign="top" width="15%"><b><font size="2">Est Total</font></b></td>
<td valign="top" width="6%"><b><font size="2">Material </font></b></td>
<td valign="top" width="10%"><b><font size="2">Est. Material</font></b></td>
<td valign="top" width="6%"><b><font size="2">Labor</font></b></td>
<td valign="top" width="6%"><b><font size="2">Est. Labor</font></b></td>
<td valign="top" width="6%"><b><font size="2">Service </font></b></td>
<td valign="top" width="6%"><b><font size="2">Est. Service</font></b></td>
<td valign="top" width="6%"><b><font size="2">Burden </font></b></td>
<td valign="top" width="6%"><b><font size="2">Est. Burden</font></b></td>
<td valign="top" width="6%"><b><font size="2">Unit</font></b></td>
<td valign="top" width="6%"><b><font size="2">Est. Unit</font></b></td>
<td valign="top" width="6%"><b><font size="2">Variance</font></b></td>
<td valign="top" width="6%"><b><font size="2">% of Est</font></b></td>
</tr>
<%
DO while not RSQry.eof
TRANS_ID=RSQry("TRANS_ID")
WORKORDER_BASE_ID=RSQry("WORKORDER_BASE_ID")
PART_ID= RSQry("PART_ID")
ENG_MASTER_QTY= RSQry("ENG")
QTY= RSQry("QTY")
Trans_Date= RSQry("Trans_Date")
Act_Total= RSQry("Act_Total")
Est_Total= RSQry("Est_Total")
ACT_MATERIAL_COST = RSQry("ACT_MATERIAL_COST")
EST_MATERIAL_COST= RSQry("EST_MATERIAL_COST")
ACT_LABOR_COST= RSQry("ACT_LABOR_COST")
EST_LABOR_COST= RSQry("EST_LABOR_COST")
ACT_SERVICE_COST= RSQry("ACT_SERVICE_COST")
EST_SERVICE_COST=RSQry("EST_SERVICE_COST")
ACT_BURDEN_COST=RSQry("ACT_BURDEN_COST")
EST_BURDEN_COST=RSQry("EST_BURDEN_COST")
Variance=RSQry("Variance")
Act_Unit_Cost=RSQry("Act_Unit_Cost")
Est_Unit_Cost=RSQry("Est_Unit_Cost")
PERC_of_EST=RSQry("PERC_of_EST")



Response.write "<TR bgcolor='" & LineColor & "' id='" & lCounter & "'><td><font size=""1""" & strFontColor & ">" & TRANS_ID & "</td><td><font size=""1""" & strFontColor & ">" & WORKORDER_BASE_ID & " </td><td><font size=""1""" & strFontColor & ">" & PART_ID & " </td><td><font size=""1""" & strFontColor & ">"
Response.write ENG_MASTER_QTY & " </td><td><font size=""1""" & strFontColor & ">" & QTY & " </td><td><font size=""1""" & strFontColor & ">" & Trans_Date & " </td><td><font size=""1""" & strFontColor & ">"
Response.write Act_Total & " </td><td><font size=""1""" & strFontColor & ">" & Est_Total & " </td><td><font size=""1""" & strFontColor & ">"
Response.write ACT_MATERIAL_COST & " </td><td><font size=""1""" & strFontColor & ">" & EST_MATERIAL_COST & " </td><td><font size=""1""" & strFontColor & ">" & ACT_LABOR_COST & " </td><td><font size=""1""" & strFontColor & ">"
Response.write EST_LABOR_COST & " </td><td><font size=""1""" & strFontColor & ">" & ACT_SERVICE_COST & " </td><td><font size=""1""" & strFontColor & ">" & EST_SERVICE_COST & " </td><td><font size=""1""" & strFontColor & ">"
Response.write ACT_BURDEN_COST & " </td><td><font size=""1""" & strFontColor & ">" & EST_BURDEN_COST & " </td><td><font size=""1""" & strFontColor & ">" & Act_Unit_Cost & " </td><td><font size=""1""" & strFontColor & ">"
Response.write Est_Unit_Cost & " </td><td><font size=""1""" & strFontColor & ">" & Variance& " </td><td><font size=""1""" & strFontColor & ">" & PERC_of_EST & " </td><t/r>"

RSQry.Movenext
loop
IF RSQry.Eof then
rem response.write "<tr><td Colspan=""7"" BGCOLOR=""#FFFFFF""><b> </b></td><td><b></b></td><td><b>" &"</b></td><td><b>" &"</b></td><td Colspan=""1"" BGCOLOR=""#FFFFFF""></td></tr>"
END IF
%>

</table>
</td>
</tr>
<% else
REM no assets exist%>
<tr>
<td><font color="red"><b>There are currently no records.</b>

<p><hr size="2" width="100%" color="#6B0CAA">
</td>
</tr>

<% end if%>

</table>
</td>
</tr>

</tr>
</table>
</body>
</html>
Graham Pearson
Posted: 02/17/2005, 2:24 PM

I have done reports with a program called OpenReports (www.
sourceforge.net/projects/oreports) which once installed allows you to
create PDF, HTML, Image and CVS reports on the fly. This is very easy
to intergrate into CCS as it is just a form to post variables to CCS.
2/16/2005 1:07:04 PM
Travis <Travis@forum.codecharge> wrote in message
<2142138bc8539d6@news.codecharge.com>

> I have a report that was custom built for us and I am wanting to
learn how to
> create them, but to start with I just need to get a report
converted to CCS and
> see what it looks like, if possible. I can't post the report here
because it
> utilizes 4 .asp files (vbscript) and want to see if anyone is
interested in
> giving me a bid. Just so you know ahead of time. I would not be
able to send
> the database that the report connects to because it is over 650
tables (sql
> Server) but could send samples of a current report and such.
Thanks. I will
> post the code from one of the files below and see how it goes:
>
> <%@ Language=VBScript %>
> <!--#include file="../include/i_dbconnect.asp" -->
> <!--#include file="../include/i_baseURL.asp" -->
>
> <%
> REM Dim Variables
> rem DIM IntLaborHours,IntWOID,IntWOID2,IntSumLaborID
> CreateDBConnection()
>
> REM Get Data
> CommandObject.CommandText = "wip_actvsest"
> CommandObject.CommandType = 4
> Set RSQry = CommandObject.Execute()
>
> CloseDBConnection()
>
> strTitle = "Actual vs Estimated " & date
> %>
> <%
> 'The const's are For the colors and the Flag is needed
> Const sPrimaryColor = "WHITE"
> Const sSecondaryColor = "CCCCCC"
> Dim bColorFlag
> Dim lCounter
> 'This function does all the work For you.
> function LineColor()
> bColorFlag = Not bColorFlag
> if bColorFlag Then
> LineColor = sPrimaryColor
> Else
> LineColor = sSecondaryColor
> End if
> End function
> %>
> <html>
> <head>
> <title>Picosecond Pulse Labs, Work Order Report
<%=strTitle%></title>
> <link REL="STYLESHEET" TYPE="text/css" HREF="/include/styles.css">
> </head>
> <body BGCOLOR="white" topmargin="0" leftmargin="0" marginwidth="0"
> marginheight="0">
> <table width="800" border="0" cellpadding="0" cellspacing="0"
ID="Table1">
> <!-- TOP NAV -->
> <!--#include file="../include/i_topnav.asp" -->
> <!-- END TOP NAV -->
> <tr>
> <td background="/images/left_vert18x8.jpg" width="18"></td>
> <td width="10"><!-- spacer column --> </td>
> <!-- Main Content Cell -->
> <td width="772">
> <table width="772" cellpadding="2" cellspacing="0" border="0"
ID="Table2">
> <tr>
> <td colspan="3"> </td>
> </tr>
> <tr>
> <!--#include file="../include/i_leftnav.asp" -->
> <td width="15"> </td>
> <td valign="top" align="left">
>
> <table width="100%" cellpadding="0" cellspacing="0"
border="0"
> ID="Table3">
> <tr>
> <td>
> <span class="header">Inventory Transactions with Actual Vs
Estimated
> Cost</span>
> <hr size="2" width="100%" color="#6B0CAA" align="left"><p>
> </td>
> </tr>
> <tr>
> <td>
> <a href="estvsact_print.asp">View printable version</a><p>
> </td>
> </tr>
> <%If not RSQry.eof then%>
> <tr>
> <td>
> <table width="100%" cellpadding="4" cellspacing="0"
border="1"
> bordercolor="black" ID="Table4">
> <tr bgcolor="999999">
> <td valign="top" width="6%"><b><font
size="1">Trans
> ID</font></b></td>
> <td valign="top" width="15%"><b><font
> size="1">WO_BASE_ID</font></b></td>
> <td valign="top" width="6%"><b><font
> size="1">PART_ID</font></b></td>
> <td valign="top" width="6%"><b><font
size="1">ENG MSTR
> QTY</font></b></td>
> <td valign="top" width="6%"><b><font
> size="1">QTY</font></b></td>
> <td valign="top" width="24%"><b><font
> size="1">Trans_Date</font></b></td>
> <td valign="top" width="6%"><b><font
size="1">Act
> Total</font></b></td>
> <td valign="top" width="15%"><b><font
size="1">Est
> Total</font></b></td>
> <td valign="top" width="6%"><b><font
size="1">Material
> Cost</font></b></td>
> <td valign="top" width="10%"><b><font
size="1">Est.
> Material Cost</font></b></td>
> <td valign="top" width="6%"><b><font
size="1">Labor
> Cost</font></b></td>
> <td valign="top" width="6%"><b><font
size="1">Est. Labor
> Cost</font></b></td>
> <td valign="top" width="6%"><b><font
size="1">Service
> Cost</font></b></td>
> <td valign="top" width="6%"><b><font
size="1">Est.
> Service Cost</font></b></td>
> <td valign="top" width="6%"><b><font
size="1">Burden
> Cost</font></b></td>
> <td valign="top" width="6%"><b><font
size="1">Est. Burden
> Cost</font></b></td>
> <td valign="top" width="6%"><b><font
size="1">Unit
> Cost</font></b></td>
> <td valign="top" width="6%"><b><font
size="1">Est. Unit
> Cost</font></b></td>
> <td valign="top" width="6%"><b><font
> size="1">Variance</font></b></td>
> <td valign="top" width="6%"><b><font
size="1">Percentage
> of Estimate</font></b></td>
> </tr>
> <%
>
> DO while not RSQry.eof
>
>
>
> TRANS_ID=RSQry("TRANS_ID")
> WORKORDER_BASE_ID=RSQry("WORKORDER_BASE_ID")
> PART_ID= RSQry("PART_ID")
> ENG_MASTER_QTY= RSQry("ENG")
> QTY= RSQry("QTY")
> Trans_Date= RSQry("Trans_Date")
> Act_Total= RSQry("Act_Total")
> Est_Total= RSQry("Est_Total")
> ACT_MATERIAL_COST = RSQry("ACT_MATERIAL_COST")
> EST_MATERIAL_COST= RSQry("EST_MATERIAL_COST")
> ACT_LABOR_COST= RSQry("ACT_LABOR_COST")
> EST_LABOR_COST= RSQry("EST_LABOR_COST")
> ACT_SERVICE_COST= RSQry("ACT_SERVICE_COST")
> EST_SERVICE_COST=RSQry("EST_SERVICE_COST")
> ACT_BURDEN_COST=RSQry("ACT_BURDEN_COST")
> EST_BURDEN_COST=RSQry("EST_BURDEN_COST")
> Variance=RSQry("Variance")
> Act_Unit_Cost=RSQry("Act_Unit_Cost")
> Est_Unit_Cost=RSQry("Est_Unit_Cost")
> PERC_of_EST=RSQry("PERC_of_EST")
>
>
>
> Response.write "<tr bgcolor='" & LineColor & "' id='" &
lCounter &
> "'><td><font size=""1""" & strFontColor & ">" & TRANS_ID &
"</td><td><font
> size=""1""" & strFontColor & ">" & WORKORDER_BASE_ID & " 
</td><td><font
> size=""1""" & strFontColor & ">" & PART_ID & " </td><td><font
size=""1"""
> & strFontColor & ">"
> Response.write ENG_MASTER_QTY & " </td><td><font
size=""1""" &
> strFontColor & ">" & QTY & " </td><td><font size=""1""" &
strFontColor &
> ">" & Trans_Date & " </td><td><font size=""1""" &
strFontColor & ">"
> Response.write Act_Total & " </td><td><font
size=""1""" &
> strFontColor & ">" & Est_Total & " </td><td><font size=""1"""
&
> strFontColor & ">"
> Response.write ACT_MATERIAL_COST & " </td><td><font
size=""1""" &
> strFontColor & ">" & EST_MATERIAL_COST & " </td><td><font
size=""1""" &
> strFontColor & ">" & ACT_LABOR_COST & " </td><td><font
size=""1""" &
> strFontColor & ">"
> Response.write EST_LABOR_COST & " </td><td><font
size=""1""" &
> strFontColor & ">" & ACT_SERVICE_COST & " </td><td><font
size=""1""" &
> strFontColor & ">" & EST_SERVICE_COST & " </td><td><font
size=""1""" &
> strFontColor & ">"
> Response.write ACT_BURDEN_COST & " </td><td><font
size=""1""" &
> strFontColor & ">" & EST_BURDEN_COST & " </td><td><font
size=""1""" &
> strFontColor & ">" & Act_Unit_Cost & " </td><td><font
size=""1""" &
> strFontColor & ">"
> Response.write Est_Unit_Cost & " </td><td><font
size=""1""" &
> strFontColor & ">" & Variance & " </td><td><font size=""1""" &
> strFontColor & ">" & PERC_of_EST & " </td><t/r>"
>
> RSQry.Movenext
> loop
> IF RSQry.Eof then
> response.write "<tr><td Colspan=""7""
> BGCOLOR=""#FFFFFF""><b> </b></td><td><b></b></td><td><b>"
> &"</b></td><td><b>" &"</b></td><td Colspan=""1""
> BGCOLOR=""#FFFFFF""></td></tr>"
> END IF
> %>
>
> </table>
> </td>
> </tr>
> <% else
> REM no assets exist%>
> <tr>
> <td><font color="red"><b>There are currently no records.
</b>
>
> <p><hr size="2" width="100%" color="#6B0CAA">
> </td>
> </tr>
> <tr><td> </td></tr>
> <% end if%>
> <tr><td> </td></tr>
> </table>
> </td>
> </tr>
> </table>
> </td>
> <!-- END MAIN CONTENT CELL -->
> </tr>
> </table>
> <!--#include file="../include/i_footer.asp" -->
> </body>
> </html>
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.codecharge.com/

Add new topic Subscribe to topic   


These are Community Forums for users to exchange information.
If you would like to obtain technical product help please visit http://support.yessoftware.com.

Internet Database

Visually create Web enabled database applications in minutes.
CodeCharge.com

Home   |    Search   |    Members   |    Register   |    Login


Powered by UltraApps Forum created with CodeCharge Studio
Copyright © 2003-2004 by UltraApps.com  and YesSoftware, Inc.