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 bkrike 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: techskool
  • Content: Threads
  • Order by date
  1. techskool

    easy Javascript textbox input validation

    Hi Guys I have to validate for form input. I have a form with 4 textboxes, and i need to check onSubmit that at least one of the four fields has been filled out. How do i do this please? Many Thanks Dave
  2. techskool

    Change default save location for download files

    Hi I have an ASP and partial Javascript file manager. It finds files in many locations. When you find a file via the web GUI you can open up a folder in a local mapped drive, so users with the right NTFS perms can save changes. Problem is when they open a file and save as (in say a word...
  3. techskool

    Opening Microsoft Applications or Plugins via browser

    Hi there Ive noticed whn you click on a file view / download via the web, some Microsoft apps open in Internet Explorer (like word or excel) and some fire up their respective application like access databases. Is there a way to ensure all applications open in their native format, so if i click...
  4. techskool

    Windows browser / explorer file getFocus difficulty

    Hi All, Hope u are well I have a predominantely ASP coded intranet which i am writing a file / document manager for.Results are returned from an Indexing Service datasource and results paged in the standard way. The thing is when someone gets results i give them the option to open the folder...
  5. techskool

    write from child form to parent form

    Hi Guys. I have a html form which is on a job logging system. I am trying to get it it to fill out a persons details from values it already has in a db. Heres where I am up to; a form with a user id field is filled out with a username and you click a link that pops up a pop up window which...
  6. techskool

    Form validation for file extension upload

    Im a total incompetent when it comes to JavaScript as i work soley in ASP and SQL, but against my better judgement tried some client side form validation the other day. I wrote and hacked this together but it falls over. Can you tell me whats up with it? Thanks Dave function onSubmitForm()...
  7. techskool

    Active Directory Interogation

    Hi Fella's I want to see if its plausable to interogate the active directory on our Domain Controller (server2000) to page results to a web front end of,..all machines within the domain,.. and heres the difficult bit,.. also write out the packages that are installed on them : - ie : PC 001 -...
  8. techskool

    Indexing Service results Restriction

    After much work trying to understand the microsoft knowledge base's ideas on how to set up Indexing Service for web pages, it finally works. You know the Routine, you have an IDQ file and a HTX file to interogate the catalog. Within the htx file i write out the matches, from the relevant...
  9. techskool

    Easy ASP ignore words question

    This is gonna seem really daft, im not quite with it today Say i was asking ASP to ignore a word when it was performing an action: ---- varIgnore = &quot;materials.asp&quot; If objFileItem.Name <> varIgnore Then .... ---- How would i make it ignore 1)more files than just the one ive...
  10. techskool

    ASP select all from data range

    Hi Im want to compare records in a database, which have a value dd/mm/yyyy (set to a variable : DateLogged )in one field, in a query for matches from the last 2 weeks additions (a date is genetaed on the date of an addition) I was thinking : sql=&quot;SELECT * FROM stock WHERE DateLogged...
  11. techskool

    Really nasty old code

    I wrote a variable SQL statement, and im totally not happy with it, even though it works. There must be a better way to write it, but how? ---------sql=&quot;SELECT * FROM stock&quot; If Artist <> &quot;&quot; Then sql = sql + &quot; WHERE Artist LIKE '%&quot;&Artist&&quot;%'&quot; End if...
  12. techskool

    javascript

    When i use a 'file field' on a form to browse for an file, i want to just be able to select *.jpg's, so a user cannot select any file other than a jpg (or perhaps even see anyfile other than a jpg) How would i go about this? Thanx Dave :)
  13. techskool

    asp Remember me Login!

    I am thourougly baffled with a login, that im trying to ensure is remembered when a checkbox is selected at login. I have: valRemember = Request.Form(&quot;remember&quot;) If Session(&quot;Username&quot;) <> &quot;&quot; And Session(&quot;Password&quot;) <> &quot;&quot; Then valUsername =...
  14. techskool

    select *from date range

    Im trying to pull all records added to my database in the last 14 days. Im trying: sql=&quot;SELECT * FROM stock WHERE DateLogged BETWEEN '&quot;&DateAdd(&quot;d&quot;,-14,Date)&&quot;' AND '&quot;& Date &&quot;' AND InStock = 'Yes' ORDER BY Artist, Title, Label&quot; ive response.write out...
  15. techskool

    querystring question

    Hi Guys I have asp pages which i page through with a next and previous link. eg: PREV : NEXT I recently added code to allow me to see page numbers as well: eg: PREV 34567 NEXT My code is <% For I = 1 To TotPage If I = CPage Then response.write I Else%> <a...
  16. techskool

    Mailing list from database.

    Ive currently got an ASP site with an Access Database. I add records to the database sometimes daily sometimes only weekly. I want a mailing list so current customers (who are also logged in one table in the database) and new ones that sign up can be informed when new stock is added to the...
  17. techskool

    Operation must use an updateable query.

    Hi guys Ive got a shopping basket on my site www.recordsnorthwest.com Sessions arent tied up to customer keys, they are just random sessions attached to items in a table for instances of items added to the basket. I cleared out this table this morning, after a customer has placed an order...
  18. techskool

    Looped recordset within CDONTS mail?

    Im writing an order confirmation email to a customer who buys online. The body part of the message which will confirm their address from the database is fine , cos there is only one instance of this, but when i try and add to the body the items ordered, i can only successfully write one item...
  19. techskool

    Shopping cart variable postage count??

    I have a shopping basket, which i need to to add some code to for variable postage.: Ive ommited all the html i would write on the fly here: A loop includes this: ************** qtyprice = Price * qtyselected dblTotalPrice = cDbl(dblTotalPrice) + cDbl(qtyprice) ************** I take the...
  20. techskool

    This weeks most 'searched for keyword' is...

    Lets say i have a link to my search script, with a querystring for what its searching for. I then want to populate the querstring with a variable of the most searched for keyword on my site, and set this link up to reflect that. 1. The text between the anchors would be dynamic 2. The...

Part and Inventory Search

Back
Top