|
 |
asp_ado_rds thread: RDS Problem
Message #1 by Anant.Joshi@n... on Tue, 17 Oct 2000 12:23:45 -0400
|
|
I have an ASP page in which I am declaring a client side RDS object.
The source of data is URL which is an ASP page that retrieves data.
I bound the datasource to the table but all I see is one empty row of table.
I did not had the window.onload function to begin with.
After I added that, the page is displayed as above (one empty row)
but I the error icon gives error that 'One or more arguments are invalid'
As far as I know, Refresh method does not need any argument.
Any help will be greatly appreciated.
Thanks
- Anant
------ BEGIN CODE -------
<OBJECT CLASSID="clsid:BD96C556-65A3-11D0-983A-00C04FC29E33"
ID="dsoUtilSummary" WIDTH="0" HEIGHT="0">
<PARAM NAME="URL" VALUE="UtilSummaryDataPage.asp">
</OBJECT>
<script language="JScript">
function window.onload()
{
dsoUtilSummary.Refresh();
}
</script>
</head>
<body>
<center>
<table border=1 width="100%" ID="tblData" DATASRC="#dsoUtilSummary">
<THEAD>
<TR>
<TD width='25%' align=left>Customer</TD>
<TD width='15%' align=center>D/C</TD>
<TD width='20%' align=right>Curr Commit</TD>
<TD width='20%' align=right>Outstanding</TD>
<TD width='20%' align=right>Available</TD>
</TR>
</THEAD>
<TBODY>
<TD align=left><INPUT TYPE="TEXT" DATAFLD="ShortName"></INPUT></TD>
<TD align=center>Not Av.</TD>
<TD align=right><INPUT TYPE="TEXT" DATAFLD="CurrComm"></INPUT></TD>
<TD align=right><INPUT TYPE="TEXT" DATAFLD="Outstanding"></INPUT></TD>
<TD align=right><INPUT TYPE="TEXT" DATAFLD="Available"></INPUT></TD>
</TBODY>
</table>
------ BEGIN CODE -------
==================================================================
De informatie opgenomen in dit bericht kan vertrouwelijk zijn en
is uitsluitend bestemd voor de geadresseerde. Indien u dit bericht
onterecht ontvangt wordt u verzocht de inhoud niet te gebruiken en
de afzender direct te informeren door het bericht te retourneren.
==================================================================
The information contained in this message may be confidential
and is intended to be exclusively for the addressee. Should you
receive this message unintentionally, please do not use the contents
herein and notify the sender immediately by return e-mail.
==================================================================
|
|
 |