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 -> Previously "ASP with Oracle8 vs. Oracle7?"

Previously "ASP with Oracle8 vs. Oracle7?"

From: Jenny Fristrup <fristrup_at_labs.agilent.com>
Date: 2000/06/21
Message-ID: <39514830.7D46B7F4@labs.agilent.com>#1/1

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 Wed Jun 21 2000 - 00:00:00 CDT

Original text of this message

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