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 strongm 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. jammer1221

    Change attribute value of empty tags

    tsuji, That code works great for that specific example, but, the XML I posted was a simplified version. In case you feel like a challenge this early in the morning... <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> <GSP VER="3.2"> <TM>0.016818</TM> <Q>test</Q> <PARAM...
  2. jammer1221

    Change attribute value of empty tags

    tsuji, Thanks for the reply and I'm glad you posted that example because it means I haven't been entirely off. Well, I've tried your example (as well as many variations!) and it's not working. So, I'm posting a minimized version of my code in the hopes that you can visually spot an error. XML...
  3. jammer1221

    Change attribute value of empty tags

    Hi all, I'm fairly new to XSL/T and I've been trying to get this problem to work. Here's the set up. I have a document full of MT elements. They contain a N attribute and a V attribute. The N's always have values but the V's sometimes don't. Is it possible to match all empty V attributes and if...
  4. jammer1221

    FF window.event

    Hey all, I ran the following code in Firefox and the returned values were rather strange to me. Can anyone shed some light on what's being returned? Code: setInterval(function(event) { console.log(event) },200) Data returned to console: 65 -9 -6 12 0 18 -9 9 -3 250 -12 -9 -6 -3 15 3 6 9 -3...
  5. jammer1221

    Redirect and .htaccess

    Hi all, I'm fairly new to managing Apache and I have a few questions. The first is, how do I redirect depending on the login. So, user comes to index.html and logins in as Dealer. I need to redirect them to dealer.html. Or they login as Marketing, I would then need them redirected to...
  6. jammer1221

    Relative URL &amp; Cache

    That's kinda of what I thought, but wanted to confirm. Thanks for your reply! Matt
  7. jammer1221

    Relative URL &amp; Cache

    Hey all, If I reference a JS or image file in page1.html like this <script src="ext.js"></script> and then in dir/otherpage.html I reference the same js file e.g. <script src="../ext.js"></script> Will it be in the browsers cache? What if I reference both files with an absolute path...
  8. jammer1221

    Iframes and Javascript

    Hey Jeff, Sorry for the long delay, but, thanks for the reply! ...very helpful Matt
  9. jammer1221

    Group Options

    DonQuichote: I would love to learn about stored procedures. Do you have any good links? Thanks, Matt
  10. jammer1221

    Group Options

    r937- So is it possible to "prettify" or no? I realize it's a bad habit, but, in the interest of learning I'd like to know... Thanks, Matt
  11. jammer1221

    Group Options

    Hey all, I have a query that looks like this: SELECT tags.tag, assets.id FROM tags, assets WHERE tags.id=assets.id it returns this... +---------+----------+ | tags | id | +---------+----------+ | east | 10 | | west | 11 | | bumper | 10 | | coast | 11...
  12. jammer1221

    Iframes and Javascript

    Hey all, I have been developing a site and while still structuring the basic framework I decided to use iframes to display content and javascript to make the layout look exactly how I wanted it to. As I've continued to develop the site I've toyed with the thought of just leaving the javascript...
  13. jammer1221

    Scrollbar Events

    Hey All, I have an iframe that holds a few "widgets". These widgets are draggable and if the user drags them outside the dimensions of the iframe, the iframe, of course, creates scroll bars. Is there anyway to detect when the iframe creates the scroll bars without constantly querying the size...
  14. jammer1221

    Form submit with popup box

    Or do you want to submit the form data to a pop up? If so... <form method="post" action="theform.asp" target="_blank"> <input type="checkbox" onclick="this.submit()" /> <input type="hidden" name="UserID" value="1" /> </form> IMO, that's the easiest thing to do... Matt
  15. jammer1221

    Form submit with popup box

    <form method="post" action="theform.asp"> <input type="checkbox" onclick="newwindow('theform.asp')"> <input type="hidden" name="UserID" value="1"> </form> hth, Matt
  16. jammer1221

    Forward to a URL

    Hi All, I have an email address that I need all messages received to be forwarded to an internet URL. I.E. messages sent to tester@example.com will be forwarded to http://example.com/tester Is this possible? If so, can any one give me any pointers or urls? Thank you, Matt
  17. jammer1221

    ASP &amp; XML runtime error '800a01a8'

    Hey guys, Thank you all for the help. I did finally solve it. I'll post what I did incase someone else stumbles on this thread. I added this code under the while loop. if (docHeadlines.attributes==null) break; Thanks, Matt
  18. jammer1221

    ASP &amp; XML runtime error '800a01a8'

    Hi Sheco, I'm a PHP guy and this is my best attempt at ASP. But, I was under the impression that the while loop would not continue if docHeadlines was not an object. So is it possible in ASP for docHeadlines to be eqaul to Nothing/null/undefined and still be an object? Would you advise that I...
  19. jammer1221

    ASP &amp; XML runtime error '800a01a8'

    Hi All, I am receiving the error "Microsoft JScript runtime error '800a01a8'" inside of this script. Error Message: Microsoft JScript runtime error '800a01a8' Object required /aspxml.asp, line 16 Script: <%@ Language=JScript%> <%Server.ScriptTimeout=21478836%>...
  20. jammer1221

    Form inside of a form

    Yes, I agree with you that nested forms are wrong because they do not work. However, these boxes will never get updated and I am certain of that. Relating to bullet-proofing my work, I understand that is what all of you guys are saying and I realize for regular web development it is a good...

Part and Inventory Search

Back
Top