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 Mike Lewis 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. Ed Mozley

    How to combine 2 Select queries in 1

    Also each part of the union should have the same number of columns.
  2. Ed Mozley

    Window alert does not work

    The output is this <script> var SN = John; function myFunction() { alert("Dear "+SN+",\n..."); } </script> <script>myFunction();</script> So if you put a single quote around the value assigned to the value SN... var SN = '<%=sesname%>'; ...you should be all set.
  3. Ed Mozley

    Data in DB table cell not displaying in asp page table cell

    If you load the page and then view source to get the HTML output that might give you some clues. Are you able to paste the HTML output here?
  4. Ed Mozley

    Help with retrieving image dimensions &amp; details

    Hi In the past I have used imagemagick https://www.imagemagick.org/script/index.php The other solution would be use javascript to get the image dimensions and send them to server via AJAX post. I wrote code for it in this question here: http://www.tek-tips.com/viewthread.cfm?qid=1777440 Ed
  5. Ed Mozley

    Determine the Width and Height of an External Image

    Hello - this might be a bit of a late comment but I thought you might be interested in a possible workaround. 1. Load image into DIV with javascript 2. Measure image using javascript 3. Send dimensions to ASP page to save values to database <html> <head> <script> function GetXmlHttpObject() {...
  6. Ed Mozley

    Creating Excel files in Classic ASP on an intranet

    I struggled for years to get office automation to work properly in an IIS/ASP environment and all my research said basically don't try it as it is not reliable/scalable. So hats off to you that you got it to work at all! Just my tuppence worth - two possible alternatives: 1. Generate the...

Part and Inventory Search

Back
Top