Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Netscape and .ASP pages dont' show correctly

Status
Not open for further replies.

DougP

MIS
Dec 13, 1999
5,985
US
I created a WEB site in Front Page 2000
All of the secure pages are .ASP and link to a SQL server database.
One user has Netscape and the page does not show completely.
Only the top 3 lines, which are:
"Terms: xxxxxx"
"Records found xxxx"
"Use your Browsers BACK button to add another part"

------------------------ here is the code ----------
<html>
<%@ Language=VBScript %>
<head>
<title>Parts Search Results</title>
</head>
<body>
<%pnum=request.querystring(&quot;PartNumber&quot;)%>
<%desc=request.querystring(&quot;Description&quot;)%>
<%Customer=request.querystring(&quot;Customer&quot;)%>
<%PONum=request.querystring(&quot;PONum&quot;)%>

<%If PONum = &quot;&quot; then
NoPO = true
End If%>

<%
Set Conn = server.CreateObject(&quot;ADODB.Connection&quot;)
Conn.Open &quot;driver=SQL Server;server=myserver.com;uid=user;pwd=pass;database=mydb;&quot;
Set RS = Conn.Execute(&quot;SELECT Count(*) AS Recs FROM [Copy-PartMaster Lite] Where [STOCK_CODE] Like N'%&quot; & pnum & &quot;%' And [Description] Like N'%&quot; & desc & &quot;%'&quot;)
Set RS1 = Conn.Execute(&quot;SELECT [STOCK_CODE], [Description], [LONG_DESC], [SELLING_PRICE] FROM [Copy-PartMaster Lite] Where [STOCK_CODE] Like N'%&quot; & pnum & &quot;%' And [Description] Like N'%&quot; & desc & &quot;%'&quot;)
Set RS2 = Conn.Execute(&quot;SELECT * From Customers Where [CUSTOMER] ='&quot; & Customer & &quot;'&quot;)
Response.Write &quot;Terms: &quot; & RS2(&quot;PYMTRMID&quot;)
%>
<br>
Records Found&nbsp; <%=RS(&quot;Recs&quot;)%>
&nbsp;<p>Use your Browsers BACK button to add another part</p>

---------------

Any assistance would be appreciated
DougP, MCP

Visit my WEB site to see how Bar-codes can help you be more productive
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top