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

    Link within clickable div

    ^ Sorry, it was a bad typing mistake, I meant to type $ but hit the # by accident... Also, I figured out the issue, I had to use "event.stopPropagation();": $(".lnk").click(function(event){ event.stopPropagation(); $("#divClick").css("display","none"); $("#aClick").css("display","block")...
  2. vicvirk

    Link within clickable div

    Hi, I have this: <style type="text/css" media="screen"> .myDivClass { width: 500px; height: 100px; border: 1px solid #000; } #divClick, #aClick { display:none; } </style> <script type="text/javascript" langugage="javascript"> // assume jquery-1.4.4 is already loaded...
  3. vicvirk

    checkbox save results

    huobaji, If I understand your question, you are trying to grab only the content from each row where the checkbox is selected and then do something with that data on the next page - try this: <form action="page2.asp" method="post"> <input type="text" name="tbx_test" value="" /><br /> <% for i =...
  4. vicvirk

    Wildcard searchs in ASP SQL Statement?

    SQL = SQL & " WHERE Details.VRM LIKE '%" & Ucase(Request.QueryString("code"))& "%'" -------- GOOGLE is a great resource to find answers to questions like "how do i..." http://www.google.com/webhp?complete=1&hl=en --------
  5. vicvirk

    Find closest location by postal code

    I'm in Canada (for those of you unfamiliar with this country, our version of a zip-code is called a postal code) One of my clients wants to add a feature where a user enters their postal code and then a lookup is done in a business db that finds the closest location to them - I'm sure you (who...
  6. vicvirk

    Paypal - Submit order and listner

    Paypal must have some sort of a process where you can send an order id and have that returned in either a post or a get once the order has been processed. Once you get the order id back, you can do with it what you please... -------- GOOGLE is a great resource to find answers to questions...
  7. vicvirk

    ASP Development Environment

    I use Homesite 5.5 - it was the best of its time (IMO) and is still excellent now for whatever language you are writing in (except for the .Net languages as it has no intellisense (sp?)) - ASP, PHP, JavaScript, CSS, X/HTML, XML, ...etc... You can't buy it anymore online from Adobe as...
  8. vicvirk

    Detect country (UK)

    Or use the IP2Location database and remove any IP addresses that are not in the UK. Run your IP check against the cut down version and if there is not a match then they are not from the UK. We did this once when we wanted to find users from China or The States - the db was huge so we just...
  9. vicvirk

    firefox returns thousands of extra rows from select

    it has nothing to do with the sql script as FF could care less about the server side code - or any other browser. It must be something in your markup that FF is is rendering correctly and IE is hacking a fix. ^ That's right, in most cases what FF shows is the correct version and IE tries to...
  10. vicvirk

    ASP Pages not running

    Found a link that may help: http://www.secnewsgroups.net/iissecurity/t2124-classic-asp-page-gives-page-cannot-found-iis6-0.aspx One person re-installed IIS... Are you hosting with and ISP or internally yourself? If with an ISP, what do they say? -------- GOOGLE is a great resource to find...
  11. vicvirk

    Keep user logged in

    Here is a good site to show how to use cookies: http://tinyurl.com/2gyn68x -------- GOOGLE is a great resource to find answers to questions like "how do i..." http://www.google.com/webhp?complete=1&hl=en --------
  12. vicvirk

    ASP Pages not running

    are you at least getting an error? If so, what is it? -------- GOOGLE is a great resource to find answers to questions like "how do i..." http://www.google.com/webhp?complete=1&hl=en --------
  13. vicvirk

    Windows Close after ASP finished processing

    javascript at the end of your document (at the very end after your asp has finished processing) <script language="javascript" type="text/javascript"> window.close(); </script> -------- GOOGLE is a great resource to find answers to questions like "how do i..."...
  14. vicvirk

    Drop down List retaining value after Post

    further to what fox said, here's the code: <% selPOS = Server.HTMLEncode(Request.Form("position")) %> <select name="position"> <option value="director" <% if selPOS = "director" then response.write "selected=""selected"""%>>director</option> ' ... and so on for each option </select>...
  15. vicvirk

    Help with ASP page and checkboxlist

    Sounds like you have an ASP.NET question, this forum is for Classic ASP (i.e. VBScript) forum855 -------- GOOGLE is a great resource to find answers to questions like "how do i..." http://www.google.com/webhp?complete=1&hl=en --------
  16. vicvirk

    Renaming uploaded files

    You can use tps14334's method to rename the uploaded file, it's really a "move" as far as the filescriptingobject is concerned... To get the original file name you can check out Persits object reference for aspupload... http://aspupload.com/object_file.html -------- GOOGLE is a great...
  17. vicvirk

    Javascript help

    Breaking it down: "return" tells the script to exit the function so everything after this line does not get executed. return (((D1*2.036+D3)/(273+D5))-((D2*2.036+D4)/(273+D6)))*238*(3050/D7) You are missing the closing squigglies D1.onkeyup=function() {calc(D1,D2,D3,D4,D4,D6,D7)}...
  18. vicvirk

    how to to check for &quot;

    Lazy is as lazy does... If you are in fact a "Programmer" as your profile shows, you should learn regular expressions...one of the (if not the) most useful tools out there for searching/parsing strings. -------- GOOGLE is a great resource to find answers to questions like "how do i..."...
  19. vicvirk

    Problem with Images in Internet Explorer

    looks good here to (IE 8) -------- GOOGLE is a great resource to find answers to questions like "how do i..." http://www.google.com/webhp?complete=1&hl=en --------
  20. vicvirk

    Password Encryption + change every 90 Days

    further to this point, if you have a unique key for each user, you'll need to store that information somewhere (most likely in the db) which defeats the purpose.. UNLESS you calculate it by things like first letter of first name + last letter of last name + length of first name + length of last...

Part and Inventory Search

Back
Top