Middle-Tier Foxpro Communicate With ASP
I have a middle-tier written using Foxpro. I'd like this tier to communicate
(that is pass some variables to ASP). I defined a Session variable somewhere
in my ASP file, e.g. Session("Usercode") = Somevalue. Now somewhere else, I
want to change this value. I tried this:
UserSession = CREATEOBJECT('ASPTypeLibrary.Session')
UserSession.Contents("Usercode") = TheUsercode
However, it gives the error: ASPTypeLibrary.Session is not found. However,
VB's object browser lists this
View Replies
Can I create a web server uning the 3-tier technology???
View Replies
View Related
Is it possible to design a 3-tier architecture in an ASP application. If yes then how & will it be better then 2-tier approach.
View Replies
View Related
is it possible to somehow "jump out of" an ASP page that is executed from
another page via the Server.Execute method?
on the page being executed i have several instances where i need to stop the
execution and immediately shoot back to the calling page without running
through the rest of the code on the executed page. Code:
View Replies
View Related
I have a couple pages that submits a form to an oracle database however and then I display a case number after the form is submitted. However, the records are not always being inserted at the end of the database. For example if I look at the case numbers in the database they are in this order: Code:
View Replies
View Related
I am trying to develop a ASP based web system. My Database is MSSQL2000 and Server is IIS6(WINDOWS 2003). I am using a socket server to connect to my database. This socket server uses a special standard(defined by the socket server developer) of XML tags to communicate with the socket server. This socket server sents back a XML stream as the result from the database query.
My problem is that i want my asp app to communicate with the server to access the database rather than query the database directly. I cannot figure out how to do this kind of a mutitier application. I had a suggestion from my friend that ISAPI Filter would be of some help. But i am new to the concept of ISAPI so i have no idea on how to accomplish my task .
View Replies
View Related
I'm trying to access a *.dbf (foxpro) db from an ASP app, and it works just fine as long as it exists on the same machine as the web files exist (running in IIS 5.0). However, whenever I try to connect to a dbf file across the network on a different machine, I get this:
Microsoft OLE DB Provider for ODBC Drivers (0x80040E37)
[Microsoft][ODBC Visual FoxPro Driver]File '******.dbf' does not exist.
View Replies
View Related
I wrote 2 ASP pages that communicate with JavaScript objects. page1.asp and
page2.asp are put in separate servers in separated machines. If I put in
single machine, it is fine. Now it has Runtime error: 'params.test' is null
or not an object. Any ideas?? Code:
View Replies
View Related
I am running IIS on W2kServer and am trying to use ASP with some
legacy X-Base tables. I cannot get the provider to connect.
Relevant code is:
strProvider = "Provider=vfpoledb;Data Source=C:DB2DDMS"
set objConn = server.createobject("ADODB.Connection")
objConn.Open strProvider
This style works fine with Access tables, but I get the following
error with the vfpeledb connection attempt:
An exception of type "ADODB.Connection: Provider cannot be found. It
may not be properly installed" was not handled. Code:
View Replies
View Related
We have Old FoxPro 2.6 based system, which usage Indexing techniq' for fast searching. As now we are developing New Web basesd system in ASP/ASP.net, the time we update the databases which Usage Index. the data dont get reflected in the FoxPro Application.
let me explain. The data updated from ASP pages can be accessed from ASP but they can not be accessed by FoxPro system without Reindexing the table in Exclusive mode.
View Replies
View Related
I've been tasked with integrating an older management system based on
DBF files with my snappy new ASP application to provide users of the
ASP application with real-time data from the management system.
I figure with DBF files, I should use either the DBase drivers or the
FoxPro drivers to connect to the database. Code:
View Replies
View Related
I'm puzzled on a how to communicate with a forced "Save As" dialog box. Here's the scene, I've got this script that creates a fun little file on the web server then prompts the user to pick a local path to download the same file via "save as" box.
The problem is I can't seem to find a way to grab the results of the save dialog box and react accordingly. For instance, upon a hitting the "Cancel" button I need to perform action B, but if everything works as planned I'd like to perform action A. Is this possible? Can anyone point me in the right direction or build me a stronger wall?
View Replies
View Related