Click here to Skip to main content
16,011,988 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Accessing global variables from iframe Pin
theJazzyBrain24-Jul-03 15:44
theJazzyBrain24-Jul-03 15:44 
GeneralRe: Accessing global variables from iframe Pin
haritadala25-Jul-03 4:09
haritadala25-Jul-03 4:09 
GeneralRe: Accessing global variables from iframe Pin
theJazzyBrain25-Jul-03 4:19
theJazzyBrain25-Jul-03 4:19 
GeneralNeed help deploying a web application to Oracle 9i Application Server Pin
ElizabethC24-Jul-03 8:02
ElizabethC24-Jul-03 8:02 
GeneralRecordset Problem Pin
User 1278224-Jul-03 7:13
User 1278224-Jul-03 7:13 
GeneralRe: Recordset Problem Pin
Nino_124-Jul-03 16:49
Nino_124-Jul-03 16:49 
GeneralRe: Recordset Problem Pin
User 1278224-Jul-03 16:05
User 1278224-Jul-03 16:05 
GeneralRe: Recordset Problem Pin
Nino_124-Jul-03 16:14
Nino_124-Jul-03 16:14 
I just ran the following, and it ran succesfully.

Does this look simular to what you are running?

<%

Dim objConnectionString

Dim objRecordsetString

Set objConnectionString = Server.CreateObject("ADODB.Connection")

Set objRecordsetString = Server.CreateObject("ADODB.Recordset")

objConnectionString.Open "Provider=Microsoft.Jet.OLEDB.4.0;" &_

                         "Data Source=E:\stuff\grocertogo.mdb"

Set objRecordsetString = objConnectionString.Execute ("SELECT * FROM Products ORDER BY ProductID")
                         

%>

<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Interdev 6.0">
</HEAD>
<BODY bgcolor="">

<font face="Tahoma" size="1">
<table cellpadding="0" bgcolor="008080" width="683" height="400" cellspacing="1">
<%

Do While Not objRecordsetString.eof

%>
<tr>
<!--call out our table and corresponding rows-->
	<td bgcolor="#e6e6e6"><%=objRecordsetString("ProductID")%></td>
	
<!--</tr>-->

	<td bgcolor="#e6e6e6"><%=objRecordsetString("ProductName")%></td>
	
<!--</tr>-->
	
	<td bgcolor="#e6e6e6"><%=objRecordsetString("Manufacturer")%></td>
	
<!--</tr>-->

	<td bgcolor="#e6e6e6"><%=objRecordsetString("UnitPrice")%></td>
	
<!--</tr>-->

	<td bgcolor="#e6e6e6"><%=objRecordsetString("Servings")%></td>
	
</tr>

<%

objRecordsetString.MoveNext

Loop

objRecordsetString.Close

Set objRecordsetString = Nothing

objConnectionString.Close

Set objConnectionString = Nothing

%>

<table>

</BODY>
</HTML>


Tony
GeneralRe: Recordset Problem Pin
User 1278224-Jul-03 18:23
User 1278224-Jul-03 18:23 
GeneralUsing CSS Pin
andyg.10123-Jul-03 23:35
andyg.10123-Jul-03 23:35 
GeneralRe: Using CSS Pin
Nino_124-Jul-03 5:11
Nino_124-Jul-03 5:11 
GeneralRe: Using CSS Pin
Roger Wright24-Jul-03 5:24
professionalRoger Wright24-Jul-03 5:24 
GeneralRe: Using CSS Pin
andyg.10124-Jul-03 15:49
andyg.10124-Jul-03 15:49 
GeneralRe: Using CSS Pin
Roger Wright24-Jul-03 20:03
professionalRoger Wright24-Jul-03 20:03 
GeneralRe: Using CSS Pin
Rocky Moore27-Jul-03 0:20
Rocky Moore27-Jul-03 0:20 
GeneralRe: Using CSS Pin
theJazzyBrain25-Jul-03 1:15
theJazzyBrain25-Jul-03 1:15 
GeneralRe: Using CSS Pin
andyg.10127-Jul-03 15:37
andyg.10127-Jul-03 15:37 
GeneralRe: Using CSS Pin
theJazzyBrain27-Jul-03 22:43
theJazzyBrain27-Jul-03 22:43 
GeneralLoading text into a browser control Pin
HP723-Jul-03 13:16
HP723-Jul-03 13:16 
GeneralRe: Loading text into a browser control Pin
Philip Patrick23-Jul-03 19:09
professionalPhilip Patrick23-Jul-03 19:09 
GeneralASP vs. ASP.NET and Web Tools Pin
Popeye Doyle Murray23-Jul-03 10:36
Popeye Doyle Murray23-Jul-03 10:36 
GeneralRe: ASP vs. ASP.NET and Web Tools Pin
Philip Patrick23-Jul-03 19:06
professionalPhilip Patrick23-Jul-03 19:06 
GeneralRe: ASP vs. ASP.NET and Web Tools Pin
Not Active24-Jul-03 6:16
mentorNot Active24-Jul-03 6:16 
GeneralRe: ASP vs. ASP.NET and Web Tools Pin
Popeye Doyle Murray24-Jul-03 7:26
Popeye Doyle Murray24-Jul-03 7:26 
GeneralRe: ASP vs. ASP.NET and Web Tools Pin
Not Active24-Jul-03 8:57
mentorNot Active24-Jul-03 8:57 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.