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

    indexing service search query problem

    issfaq.com, i think it works all right there... do you know of another non db-based solution for a search engine I could integrate into an asp driven site?
  2. matejv

    indexing service search query problem

    Hi, I'm having a problem preforming a search with my indexing service. Everything works fine, the problem are only the queries - it doesnt seem to like searches that are not exact words. For example, if I search for "dog" it will result all pages that containg the word...
  3. matejv

    asp quiz with random order of questions

    Thanks, but... how exactly can I execute that? TestOrder is a table, right? So, why would I write the questions into the table. As i see it the problem is not so much in the order of the questions as it is in the order of answers, which than the script tracks to calculate the result at the end...
  4. matejv

    asp quiz with random order of questions

    Hi, I am sure you all know the 101's ASP Quiz sample (http://www.asp101.com/samples/quiz.asp). I would like to upgrade this fine sample with the ability of the script generating a different (random) order of the questions in the db. At first I thought this would be a simple procedure of...
  5. matejv

    Hello, I am planning a website

    Hi, thank you for your post. I see your point... it would be a jumble. Do you have any ideas about how to improve the 'Links' execution that I described? Thanks
  6. matejv

    problem when reading from a text file

    It's ok, I got it... Norton Antivirus Script Blocking.
  7. matejv

    problem when reading from a text file

    Below is a script I use to read text from a file. The problem is that it doesn't seem to work - when it comes to the "opentxtfile" part it just loads and loads and eventually times out. I'm running IIS on win2000. Any ideas? dim strFilePath dim strFile dim objFile dim strFileTxt...
  8. matejv

    Hello, I am planning a website

    Hello, I am planning a website and would like to bounce some ideas to perhaps get some new ones or get myself pointed in the right direction. The goal and background are as follows: - asp, access, vbscript - table called "StructureElements" with the fields: ElementId (e.g...
  9. matejv

    asp& sql how-to display records from tbl

    Thanks, your reply was helpful, after I jumbled it around a bit. This was the "simpler" solution that I was looking for.
  10. matejv

    Querystring to determine is file is included?

    <% if request.querystring(&quot;Test&quot;)=&quot;1&quot; then %> <!-- #include file=&quot;&quot;../includes/header.asp&quot;&quot;--> <% end if %>
  11. matejv

    asp&amp; sql how-to display records from tbl

    Thank you, both. I wasn't clear enough. I know how to get records from a db and how to order them. The problem i am having is this: 1. Example records in db: MyName / MyArea Jack / Sports Jill / Sports Mary / Cars Minnie / Cars Lou / Cars John / Chess Mike / Chess 2. Preferred output...
  12. matejv

    asp&amp; sql how-to display records from tbl

    Hello, let's say we have a table in Access with two fields: MyName, MyArea. This is probably a very newbie question (but we all have to learn sometime) - what I would like to achieve is: (- get the records from db with an SQL query) (- put them in a recordset) - then display existing areas...
  13. matejv

    array handling problem

    Thanks guys! The final solution I adopted was the following (just for reference): Author: Shadow Wizard :::::::::::::::::::::: ' get random number Randomize RndNumber = Int(Rnd * rndMax) 'loop for comparing rndNumber to array items Dim iLoop, blnExists blnExists=False...
  14. matejv

    array handling problem

    Down below is the beginning code of what I am trying to do... The goal is: - get all records from a table (done) - get 10 random items (done) - if you encounter an item that has already been used, skip it (having trouble) I tried to solve my problem by creating an array, populating it with...

Part and Inventory Search

Back
Top