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 Wanet Telecoms Ltd 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: arundahar
  • Content: Threads
  • Order by date
  1. arundahar

    Window Focus

    Hi, i have a webpage that in turn calls a window.open command on a new URL (generating a pop-up window) and refreshes itself. Basically focus is being returned when the pop-up is another webpage, but when i try to open a pop-up linking to a PDF the focus is lost. The pop-up loads up...
  2. arundahar

    Dynamically changing the class of an element

    I have 2 frames on my page. How do i change the "class" of an element using javascript? Thanks A.
  3. arundahar

    Shared Folder

    How can i programmatically create a Shared folder using VB? Any links or articles would be handy.. And i know i can right-click and select "Share"!! A
  4. arundahar

    Validation without Javascript

    Hi, i have a form with over 20 fields on it. I want to submit this page, storing any filled in details, and redirect the user if there are any errors and highlight them. How do i do this WITHOUT using Javascript? How do i store the values the User has ALREADY entered and return them back to...
  5. arundahar

    Form Validation

    Hi, i have a large form of data. I think the best way to check this form is to submit the page to another "handling" page. The form has over 20 fields on it. Do i have to go through each field saying: If Len(strUsername) = 0 then response.redirect "previous_page?errorcode=&quot...
  6. arundahar

    Server Include Files

    Hi, firstly IS it possible to include a file from a different website. e.g <!--#include file=&quot;http://www.abc.com/1.html&quot;--> and secondly, how do you do it? Thanks Arun
  7. arundahar

    Iterating through a Form

    Hi, i have a large registration page which has about 23 fields on it for the User to fill in. 20 are mandatory the rest optional. Most are TEXT, some are SELECT, some are CHECKBOXES. How can i check each of these form elements (using ASP only!) without writing out: If Len(strUsername) = 0 Then...
  8. arundahar

    Netscape Problem

    Hello. On my page i have an <IFrame> tag that displays a site's share price info/charts etc in. Problem is this does not work in Netscape 4.7. I've tried using the ILayer tag, but when you click a link within the Layer it redirects the browser straight to that page rather than stay enclosed in...
  9. arundahar

    Serving PDF's

    Hi we have links on our site that launch a new IE window with the location of a PDF file in it. For most users the PDF opens fine, but for some it sometimes hangs or doesn't open at all saying &quot;Internet Explorer cannot download from the site&quot;. Could this be individual Javascript...
  10. arundahar

    Running Javascript

    How do i run a piece of Javascript that has no User participation? I know how to do all the onclick, onsubmit stuff but here's what i need to do... My page processes loads of ASP, at some point it gets the name of a product. I want to call the simple document.title, to change the title of the...
  11. arundahar

    &quot;Calling&quot; Javascript

    Hi, how do i run a piece of Javascript from within ASP. I don't want the user to click on anything, i just want the page to load and the javascript to run (it's to change the <TITLE> of the page) or if you can change the Title through ASP that would be even better!! I can't put it in the <body>...
  12. arundahar

    Dynamically changing the Title of a webpage

    Hi, can anyone tell me how to dynamically change the <TITLE> of a webpage. Currently our site displays the same title on ALL pages, but depending on the product that is being viewed i want to change the <Title> tag, Any ideas? Thanks A
  13. arundahar

    Dynamically changing the &lt;Title&gt; of a webpage

    Hi, can anyone tell me how to dynamically change the <TITLE> of a webpage. Currently our site displays the same title on ALL pages, but depending on the product that is being viewed i want to change the <Title> tag, Any ideas? Thanks A
  14. arundahar

    Dynamically changing the &lt;Title&gt; of a webpage

    Hi, can anyone tell me how to dynamically change the <TITLE> of a webpage. Currently our site displays the same title on ALL pages, but depending on the product that is being viewed i want to change the <Title> tag, Any ideas? Thanks A
  15. arundahar

    Prevent Double-clicking

    Hi i need some Javascript that prevents double-clicking a &quot;submit&quot; button on a User registration/login page. I have this code : if(dF.Get(f.name) != false) { alert(&quot;In progress...&quot;) return; } where f = FormName But it doesn't work, you...
  16. arundahar

    SMTP polling

    Hi i need a way (either a constantly running program or one which is run intermittently) that looks at the SMTP folder. When a new mail is sent in i need to grab the attachment out of the mail. Can anyone suggest anything, or point me in the right direction?
  17. arundahar

    Multiple downloads

    I've checked the Enable multiple downloads box under Tools etc. But i can only ever get 2 downloads when using &quot;Save Target As&quot;, whereas at work i can get loads (more than 4 anyway). Anyone any ideas? Thanks Arun
  18. arundahar

    Search and Links keep appearing on IE

    I've added the search box (the one that appears on the left of IE) and the Links toolbar to my browser. Now though when i get rid of them and restart my machine they keep appearing as default. How can i get IE back to it's bare bones! Cheers in advance.. Arun
  19. arundahar

    Deleting spaces in a string

    How do i delete all spaces in a string and replace them with the &nbsp; character? I know you can use Replace() but what if the string has more than one space in it?? E.g &quot;Today is Thursday , the 9th&quot; to &quot;Today&nbsp;is&nbsp;&nbsp;Thursday etc... Thanks Arun
  20. arundahar

    Paging Recordsets

    I have 2 recordsets that i need to span over multiple pages if there is more than 30 records in EITHER of them or if the total no. of records is MORE than 30 - i.e if rsA has 7 records and rsB has 48 i need to display all 7 rsA records and then 23 records of rsB and display the rest on another...

Part and Inventory Search

Back
Top