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 SkipVought 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: *

  1. nminaker

    404 error with IIS7 and Server 2008

    Sorry, the error should be: 404 - File or directory not found. The resource you are looking for might have been removed, had its name changed, or is temporarily unavailable.
  2. nminaker

    404 error with IIS7 and Server 2008

    Hi there, I have written a small ASP page that runs perfectly on my Windows XP development PC with IIS6. The problem is when I try to access the page via our web server that is running Windows Server 2008 and IIS7. I get the message: 403 - Forbidden: Access is denied. You do not have...
  3. nminaker

    Multiple tag selectors have properties under id selector

    Ah-ha... Alright. So since I have a span inside the header div with the id of "intro" I could go like: div#intro {whatever...} to change the stuff in that span? Also, since I have a bunch of different tags inside the divs ( ie: h2, h4, ul, li), is this how I apply the id selector...
  4. nminaker

    Multiple tag selectors have properties under id selector

    I'm not really sure if that makes sense, but I'll try to explain here. I have a pair of divs that both have id selectors; links and "header" respectively. I want these two divs to not follow the rest of my css, but they have a bunch of different tags in them and it they seem to be overridden...
  5. nminaker

    Insert responseXML to Iframe

    Thanks guys. Looks like the real problem was that I needed the iFrame to have a name, not just the ID.
  6. nminaker

    Insert responseXML to Iframe

    I'm sure this all works because I did have the results from the responseXML placed into a drop down. I just wanted to add more information than the select/options could easily and nicely display.
  7. nminaker

    Insert responseXML to Iframe

    Sorry, I suppose that is a little ambiguous, isn't it? "iframeName" is actually the ID of the iFrame.
  8. nminaker

    Insert responseXML to Iframe

    I have an iframe on my page and I'm querying a database using AJAX to get an XML result. I want the insert the XML result into the iFrame on the page. I tried document.getElementById('iframeName').innerHTML = ajaxXMLHttp.responseXML and also a few other variations. The things I found when...
  9. nminaker

    Select results that are not in both tables.

    Thanks! Works great. I guess I need to work on my sql skills a little. :) It seems so simple now...
  10. nminaker

    Select results that are not in both tables.

    I have two tables: One master list of all the items that a user can select and a list of the items the user has selected. When I load the master list I want to select only the items that don't exist in the user list. Thanks! Nick
  11. nminaker

    Why doesn't my internal CSS work?

    Hmm... I don't think that was the reason. My code for select in my external CSS was: input, label, select { display: block; margin: 0 10px 10px 0; width: 12em; float: left; } select { position: -3px; width: auto; margin: 0px; } (Yes, I realize that "position: -3" is not correct...
  12. nminaker

    Why doesn't my internal CSS work?

    I have a page that loads a main external stylesheet and then below that it has a few internal stylesheet definitions as follows: <head> <link href="style2.css" rel="stylesheet" type="text/css" /> <script language="JavaScript" type="text/javascript" src="functions.js"></script> <style...
  13. nminaker

    Get the name of a &lt;td&gt; element

    Yeah, I realize I made a mistake putting 'visible'... it really should be "block"... I'd prefer not to have to change the <td> elements so they have an ID and name... as it stands now there are three <td> elements with the same name and I want them all to have the same onclick function.
  14. nminaker

    Get the name of a &lt;td&gt; element

    I have an onload event in the body that runs the following function: function prepShowMsgs() { var bqs = document.getElementsByTagName("blockquote"); for(i = 0; i < bqs.length; i++) { var tds = document.getElementsByName(bqs[i].id); for(j = 0; j < tds.length; j++) {...
  15. nminaker

    How can I remove the left-right scroll bar?

    I tried making it 100px wider... same problem. :(
  16. nminaker

    How can I remove the left-right scroll bar?

    I have an iframe centered on a page and a navigation frame at the above it. The navigation frame uses the iframe as the target and seems to "think" that everything loaded into it is too wide and needs a scroll bar. However, I can see the whole page(left to right) fine. The only scroll bar I...
  17. nminaker

    Auto-filling from another table... is this possible and how?

    Thanks for all your help! I believe (after reading the document you advised me to read) that you're basically saying that I should design my database so that it is at least 1NF. I believe that I have completed this and everything seems to be working the way I want. Thanks once again for the...
  18. nminaker

    Auto-filling from another table... is this possible and how?

    Thanks for the quick reply. I'm not quite sure that I understand completely what you're saying. To make it simpler for me, I have two tables: "Products" and "Product Master." "Product Master" has all the Product ID's and Descriptions. "Products" is the table which contains ProID, Desc, Kit#...
  19. nminaker

    Auto-filling from another table... is this possible and how?

    I am in the middle of creating a database of products which go in different "kits." The kits are seperated by their own numbers and many of the kits contain the same products. All the products have a specific product number and product description. What I would like to do is have one table with...

Part and Inventory Search

Back
Top