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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: lovejaeeun
  • Content: Threads
  • Order by date
  1. lovejaeeun

    Can't figure out SQL Query

    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...
  2. lovejaeeun

    Displaying records on multiple pages

    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...
  3. lovejaeeun

    Content Rotator Error (Access is Denied)

    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!
  4. lovejaeeun

    recordset question

    Hi, I have a question. Im making an ASP page that would allow a user to change the primary key of a database table. I have a form that takes in two inputs (the old PK, the new PK). Right now Im just openning two recordsets. 1) SELECT * FROM mytable WHERE pk = 'oldPK' 2) SELECT * FROM...
  5. lovejaeeun

    Session Question - View contents of all sessions?

    I have a questions about session variables 1) Is there a way to print/show the contents of ALL sesssions? Not for a single user, but for however many users have a sessionID at the time. For example, if i store name and zip as session variables, and there are 5 people viewing the site, i...
  6. lovejaeeun

    session.timeout question

    Hi all, i couldn't find my answer in any other post~ If I set the session.timeout on say, page 123.asp to 40 minutes, does this affect only that page? or does it effect every page on the site? Also, if I want to set the session.timeout to 50 minutes on ALL my pages, whats the best way to do...
  7. lovejaeeun

    database design question (cant find right forum)

    I need help with this database design question. The database is MS Access 2000 and it will have no more than 1500 entries per year. I have two entities with a many to many relationship. HOST FAMILY and DELEGATE. A HOST FAMILY can host many delegates (but only one a year) and a DELEGATE can...
  8. lovejaeeun

    response.redirect question

    If I do a response.redirect, does the code that follows this statement still get exectued? If it does, what is the equivalent of the exit function statement that i can use in my ASP page to stop processing the rest of the code? thanks, lovejaeeun
  9. lovejaeeun

    Can't see effefts of includes/styles

    Sometimes I can see the effects of my CSS styles in the WYSIWYG window, but if I make changes to the .css file sometimes it doesn't "refresh" in the window. Other times it does. How can i 'refresh' or 'reload' the WYSIWYG window to reflect any changes I have made? Now that i think...
  10. lovejaeeun

    #includes - can I use them like this??

    I have a template for a website that uses tables for layout. All the pages are identicle except for the text that goes in the 'main' cell of each page. After I wrote out my template in HTLM, i just cut them up and saved them as 1.inc, 2.inc, 3.inc and used #includes (as shown in my code below)...
  11. lovejaeeun

    How get control over how website prints

    This should be a simple problem to solve? I want the website page to print according the the font-size I use on my website. As it is, no matter what I set my website font-size, the page always prints with the same font size (it looks like 12pt). Also, I want table background colors to print...
  12. lovejaeeun

    Printing Multiple Pages

    This is a project for work: We have a small Access database with about 1000 entries. I am going to make a small website that will dynamically create a link for each record in the database (so, 1000 links - and then of course the link will show the inputed fields of that record). The users will...

Part and Inventory Search

Back
Top