Thanks, the links have been very helpful.
However, one of the methods involves using a local/client-side cursor. I can't seem to get this to work:
Is this property supported by MS Access?
Thanks.
Hi,
I have a FAMILY table and a CHILD table with a one to many remlationship where a FAMILY can have multiple CHILD.
The FAMILY ID is the FK in the CHILD table.
1)
I want to write a query that would display the following as a result: (how many familes have 'x' amount of children)
# children...
Hi,
I have a MS Access 2000 backend and want to show the result of a query on multiple pages (if necessary). To my knowledge, the PageCount and PageSize properties don't work so it looks like i have to hand code it?
Can someone point me in the right direction? I would like the code to be as...
Try to replace with this line:
<img src="images/<%=cimage%>" align="left">
You're just having trouble because you're trying to use string concatnation (&) but HTML doesn't do that. The (&) would have to be between <% and %> tags so that the server knows to process the code first.
Did that...
This is the error I get:
Error Type:
MSWC.ContentRotator.1 (0x80070005)
Access is denied.
/Default.asp, line 19
Here is line 19:
content = objContentRotr.ChooseContent("/content.txt")
Permissions look fine to me. On the folder and the file.
Any suggestions?
Thanks!
Then I would guess that your submit button is not named or it is named something other than "submit".
Take out the lines:
If Request.Form("submit") = "submit" Then
End If
It should now work.
Another suggestion (for when you get this working).
Use the replace function to replace any single quotes:
replace(request.form("cname"),"'","''")
If you don't do this, and someone puts a (') in your form, you will get an error. Also, it opens up the chance for SQL injection.
You might also...
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.