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 TouchToneTommy 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: nminaker
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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
  5. 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...
  6. 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++) {...
  7. 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...
  8. 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