Hi,
I have an asp page that I would like to process some script then be redirected to another page. I'm using response.buffer = true to withhold the page during process then issue the redirect. I get this error:
Response object error 'ASP 0156 : 80004005'
Header Error
temp1.asp, line 10...
Open the report in design view. Open report properties (select black box in the upper left corner. right click). assign a data source (i.e. table or query) to the overall report. The fields in that datasource become the field list for the report.
Hi,
I've got a VB6.0 sub that I want to open access reports selected from a treeview. I'm using the Access 9.0 Object Library to reference the report object. It kinda works, it generates the report but the access app does not stay open. I briefly see the report then access closes. Any...
Hi,
I'm trying to create a main form and a linked form using the wizard. I go through the wizard select the 2 related tables along with all the fields. However the related records in the linked form are not being displayed. When I go through wizard again but choose subform rather than linked...
You can pass the parameter to the third page via the second page a couple of ways
From second page(to send)
Using a link: thirdpage?value1=<%value1%>&value2<%=value2%>
or Response.Redirect"thirdpage?value1=<%value1%>&value2<%value2%>"
Then on third page (to receive)
<%
Dim Value1...
You mean like this? if you take out for each... and next that would give you the first.
<%
dim fs,fo,x
set fs=Server.CreateObject("Scripting.FileSystemObject")
set fo=fs.GetFolder("c:\folder\")
for each x in fo.files
'Print the name of all files in the foldername folder...
Tarwn,
I've got it. In the asp (A) file I was executing in the server.execute I left the html, header, body etc tags in. So when I viewed the source per your suggestion I saw tags for that page and the originating page (B). I took all the tags out of the asp (A) then it worked. Make sense...
Tarwn and Steve,
Thanks for the responses. It tried the Server.Execute and put it at the top of the page before the <html> tag. it executes and returns to the original page but doesn't write the html. This page has 2 frames in it. I tested the Server.execute on a nonframed page and it...
Hi,
I have this website where a small portion of the site should only be available to certain users. I'm using using a database to store UserIDs. I have a login form which checks if they are in the db, if so allows them to the first page and stores the UserID as a session variable. The thing...
Hi,
I have a listbox on a form that I use to filter records using a select query. I use [Forms]![theForm]![ListName] as criteria in the select query. The query runs if the listbox multiselect property is set to none. I would like to be able to make multiple selections in the listbox this...
Hi,
I have a listbox on a form that I use to filter records using a select query. I use [Forms]![theForm]![ListName] as criteria in the select query. The query runs and returns records if the listbox multiselect property is set to none. I would like to be able to make multiple selections in...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.