Forums
This topic is locked
Data Caching in Dreamweaver
Posted 10 Apr 2004 18:22:53
1
has voted
10 Apr 2004 18:22:53 Kelly Brady posted:
I am trying to figure out how I can use Data Caching in Dreamweaver. I am using Dreamweaver to generate the necessary code to use a server binding calling a stored procedure. Here is the code: Note this is a asp.net file<MMataSet
runat="Server"
id="usp_select_bp"
IsStoredProcedure="true"
CreateDataSet="true"
ConnectionString='<%# System.Configuration.ConfigurationSettings.AppSettings("MM_CONNECTION_STRING_NetGuyInc" %>'
DatabaseType='<%# System.Configuration.ConfigurationSettings.AppSettings("MM_CONNECTION_DATABASETYPE_NetGuyInc" %>'
CommandText="dbo.usp_select_bp"
Debug="true"
>
<Parameters>
<Parameter Name="@RETURN_VALUE" Type="VarChar" Size="500" Direction="ReturnValue" />
</Parameters>
</MMataSet>
The page that I have created contains 3 more of the same type of calls. The problem is that I have 10 more pages that do the exact same thing. I want to be able to create a data cache for these 3 stored procedures. Has anyone ever done this using Dreamweaver??