Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.tools -> Re: Previously "ASP with Oracle8 vs. Oracle7?"

Re: Previously "ASP with Oracle8 vs. Oracle7?"

From: Jim Csucsai <csucsaij_at_firstenergycorp.com>
Date: 2000/06/22
Message-ID: <395262BB.52C1F52A@firstenergycorp.com>#1/1

Use a debugger and run the page tosee where it stops.... if no debugger...place some Response.write's before the login.asp code starts, after it starts, and then just before the case select area, maybe even in the case select ....find out where it stops

Jenny Fristrup wrote:

> Hi,
>
> I am now running...
>
> NT 4.0 SP 3
> IIS 4.0
> MDAC 2.5
> Oracle ODBC Driver 8.0.5.8.0
> Oracle Server 8.0.5.0.0
>
> The connection works. The ASP pages mostly work. The application has a
> login page. The login page goes to another page that set sessions
> variables and performs a redirect to whatever page is appropriate for
> the user. The application hangs on the redirect page with a...
>
> "The requested resource is in use. "
>
> message. I have ASP buffering set on at the application level. Any
> suggestions? The page in question is pasted below.
>
> Thanks,
>
> Jenny
>
> ..............................................
>
> <%@ LANGUAGE="VBSCRIPT" %>
> <% Response.Buffer = True %>
> <html>
>
> <! Purpose: This is a behind the scenes page for eoc-login.asp. >
> <! eoc-login actually pulls the values and sets the >
> <! Action session variable used here to redirect. >
>
> <head>
> <%
>
> '--Now we can move to whatever action was requested during login
> ' if request.form("buttonpushed") = "New Request" then
> select case session("Action")
> case "NEW" '--time for a new record
> response.clear
> response.redirect "reqcenter.asp"
> case "FIND"
> response.clear
> response.redirect "reqfind.asp"
> case "ASSIGN"
> Response.Clear
> response.redirect "assignstatus.asp"
> case "VOUCHER"
> Response.Clear
> response.redirect "preeovoucher.asp"
> case "BILLING"
> Response.Clear
> response.redirect "billing.asp"
> case "REPORT"
> Response.Clear
> response.redirect "reports.asp"
> case "UTILITY"
> Response.Clear
> response.redirect "utilities.asp"
> end select
>
> %>
> <meta NAME="GENERATOR" Content="Microsoft Visual InterDev 1.0">
>
> <title>Document Title</title>
> </head>
> <body>
>
> <!-- Insert HTML here -->
>
> </body>
> </html>
Received on Thu Jun 22 2000 - 00:00:00 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US