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. bhuninghake

    sum two variables

    try: <%response.Write(cstr(rsGuestbook("crqty1")*rsGuestbook("UnitPrice1")))%> and Response.write( cstr(Num1*Num2) )
  2. bhuninghake

    Javascript works in IE but not in FF

    Thanks kaht ... your suggestion worked perfectly. Overlooked the obvious, "document.all is not supported by firefox".
  3. bhuninghake

    Javascript works in IE but not in FF

    This page (http://www.izagg.com/energyinformation/LOAStateslist.htm) was originally written in asp gathering the information on each state from sql, but I've redone it so the source code could be viewed. THe following is the java script i'm using and the div tags. Everything works perfectly in...
  4. bhuninghake

    Another Progress Bar Question

    Maybe this link is better: http://www.izagg.com/code/Progress_Indicator/ProgressIndicator_20090122.asp If you have any questions just let me know.
  5. bhuninghake

    Another Progress Bar Question

    Looking at the code notice the <div id="showMessage"></div> tag ... You should be able to place this where ever you want the message to appear and it should disappear once the page loads. Hope this helps in answering your question.
  6. bhuninghake

    Another Progress Bar Question

    Maybe this will help, if so - help yourself ... http://www.izagg.com/code/nameofAspPage.asp
  7. bhuninghake

    myMail.CreateMHTMLBody - error '8004021a'

    When I clicked the link "http://www.myweb.com/customer_locator/testprocessform2.asp" I received page not found.
  8. bhuninghake

    OnClick event will not work in outlook express

    Sent out a message to our customers advertisting Valentine products. In the message I was trying to use the onclick event so the customer could click the image and see a bigger image than the thumbnail in the message. Here's a sample of the code that works perfectly on the website but I'm unable...
  9. bhuninghake

    Make Button Click Execute Code

    Since your using an image in the button I believe you need to add the '.x' to the code If Len(Request.Form("image3222.x")) > 0 Then Hope this helps.
  10. bhuninghake

    SysFader: IEXPLORE.EXE - Application Error

    When loading a CD I keep getting one of the following errors: Adobe Flash Player Security: IEXPLORE.EXE - Application Error The instruction at 0x3019cf29 referenced memory at 0x03cd0000. The memory could not be written. The instruction at 0x3019cf29 referenced memory at 0x062fe000. The memory...
  11. bhuninghake

    javascript window opening behind parent window

    In your somepage.html add the following inside the head tag : <script type="text/javascript"> <!-- window.focus(); //--> </script> Hope this helps.
  12. bhuninghake

    center site on page

    You have : <table width="600" border="0"> try this and see if it centers the table : <table width="600" align="center" border="0"> Hope this helps.
  13. bhuninghake

    Validation of Bank Routing Number

    Check out : http://www.brainjar.com/js/validation/ Hope this helps.
  14. bhuninghake

    open basic window

    I've added the href link. http://www.izagg.com/Code/Text/Test.htm Simply view the source code.
  15. bhuninghake

    open basic window

    Try this link and view the source: http://www.izagg.com/Code/Text/Test.htm
  16. bhuninghake

    open basic window

    Try this and see if it's what your trying to do: <input type="button" name="buttonlink" value="Terms And Conditions" onClick="window.open'TermsAndConditions.html','newwindowzoom','toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=410,height=400,left=100,top=100')" />...
  17. bhuninghake

    Heights

    The <div> tag defines a division/section in a document. Reference: http://www.w3schools.com/tags/tag_div.asp Hope this helps.
  18. bhuninghake

    Help with Displaying Full Text of Article Using Access/ASP

    Not 100% sure but you might have a problem with the line: Sql = "SELECT * FROM Employment WHERE ((Employment.EmpID) = '" & strEmpID & "')" How about trying: Sql = "SELECT * FROM Employment WHERE Employment.EmpID = '" & strEmpID & "' " Hope this helps.
  19. bhuninghake

    response.redirect when session expires

    Try this. In your "Empty.asp" try placing the following javascript in the <head></head> section of the page. <script language="JavaScript"> function logoutProcess() { if (confirm("To complete the log out process, you must close this browser window. Click ok to complete" + " logout.")) {...
  20. bhuninghake

    How to pass a session variable to flash

    Need help on sending a session variable to a flash button. I want to have a signup button in flash that will send a person to a registration page with the sponsors information. I've provided a link for clarification. http://www.izagg.com/Code/Asp_and_Flash/Link.asp. The Session variable will...

Part and Inventory Search

Back
Top