Effective Search Result

we have a MSAccess database of products with titles, short descriptions, long descriotions, bulletpoints etc contained for each product. we currently search the database looking for the target keyphrase within the fields, but this doesnt give any accurate results as for example a product that is compativle with "widget 1" is shown before "widget 1" . anyone know of a process that will give us better, more relevant search results?

View Replies


ADVERTISEMENT

Top 10 Search Result

i want to have a search application wherein it returns a results page and arranged based on the most relevant word. can you please give me an idea with this or point me to any info.

View Replies View Related

Search Result By Relevancy

i am trying to make a search/result page(using asp, dreamweaver,iis,winnt,miscrosoft access database) wherein the results page brings up the most relevant words or phrases and not in alphabetical order.

View Replies View Related

Percentage On Search Result

i'm sure there're no post about this in asp forum.Any idea how do I show the percentage number for the matching result.

example :

Your search for xxxx :

1. item 1 98%
2. item 2 86%
3. item 3 75%

View Replies View Related

How To Make A Link To A Search Result

I am in the process of making a new frontpage for the site and i would like to have some new links on there. However with the site been .asp based as its an online store im unable to link to a specific product range.

I would like to know if it is possible to make a link to include a specific search string so that it will display the information that would be displayed if a user had typed this in on the search bar of the site.

For example i would like to make a link that displayed the results for "black shoes" exactly as it would return if a user had typed this into the search bar.

View Replies View Related

Search Result Text Highlighting Issue

i am developing a search engine(ASP with SQL SERVER) for my project . My objective is to search for a data and it should display the result and highlighting the search text in different color. But when i use the search text with more than one word, the result is highlighting only the last word of the search text.

Example - If i search for "Opal" , the search result highlighting all the words with "opal", But when is search "Opal Service", the search result is highlighting only the "service".

Here the "Opal" and "service" are different identities, i will search these two words with AND condition . Code:

View Replies View Related

Search Result To Custom Named Page

Here is what I am trying to accomplish.

Language: .asp vbscript

Building a searchable real estate property database (MS Access)

Search page submits form variables to result page.

Works great but I have seen other web sites where the results page is a custom named page. for example.

If you search for homes with the following criteria.

Criteria: Buford, GA 30519

Your results page is named something like the following.

MLS-Buford-GA-30519-10-Distancea-0.aspx

Is this only doable in .aspx or can I accomplish this task in .asp?

View Replies View Related

When Only Enter On Search Buuton Then No Result Find

I have created a search page which has a text field and button to search.When searching, if you dont enter anything into the text field, you get no results. I would prefer that everything in the database shows rather than nothing. I am told that if you enter '%' into the text field everything will come up. But how would I make this happen automaticaly rather than the person searching typing this in every time?

Text field code:
<input name="keywordSearch" type="text" id="keywordSearch">

Button code:
<input name="Search" type="submit" id="Search" value="Search">

View Replies View Related

ASP Effective User ID

I've been looking for information on how to figure out
which active user ID a ASP script runs as.
The normal Request.ServerVariables dont do the trick.
For example if the anonymous browsing is set to the user "test". I would like to know how to retrieve that the user is actually "test".

View Replies View Related

Filter The Result And Display The Final Result

it is possible to compare the result of 2 recordset and
filter those similiar results,and display only the remaining results

View Replies View Related

"page" A Search Result

I want to create a search form on my site using ASP, it will search through the database and return many many records. But I don't want ALL those records to be shown on ONE page, I want them to be "splitted" up to many pages, about 10-20 records per page. You know, just like any MP3 sites or Soft sites. Is there any one can help me to solve this problem? Or you can show me a link to another location which can show me a way.

View Replies View Related

Sum Result

I have a database setup and the results come out as

Product 1: Shorts
Size: M
Price: £2.99

Product 2: T-Shirt
Size: XL
Price: £3.99

Total: "TOTAL HERE"

What I need to do is total these up

The Cells are called:
Product
Size
Price

View Replies View Related

Result Set

I want to do some checking for my table for eg:

I want to check if the table for which year then if same year then do something.....

View Replies View Related

Calculation Result

Does anyone know how i can make

[code]
Dim excl

excl = rs("price") / 1.175
[code]

return only a 2 decimal place number

View Replies View Related

Assigning The Result

How can I assign the result of a SQL-query to an ASP variable? This is what I have so far but it doesn't seem to work. Code:

dim strSQL
strSQL="select TestID FROM TestID_Description WHERE CL1='" &Request.Form("CL1")& "' AND CL2='" &Request.Form("CL2")& "'AND CL3='" &Request.Form("CL3")& "'AND CL4='" &Request.Form("CL4")& "'AND CL5='" &Request.Form("CL5")& "'AND CL6='" &Request.Form("CL6")& "'"
objRS("TC_Number")=objConn.execute(strSQL)

Maybe it's interesting to know that TC_Number is the primary key of the table.

View Replies View Related

Detect Result

The delete method of the FileSystemObject.FileObject does not return a result. If permissions disallow deletion, it will not raise an error. Conversely, if the delete method does succeed, a call to FileExists directly afterward may return true because the system hasn't updated yet (or whatever actually goes on). Is there any way to accurately check the result of a deletion?

View Replies View Related

ASP Result Page

why my results page is not coming back with anything?? I have set up a simple form in dreamweaver, it connects to a access database and IIS web server. When i test the recordset it works ok (returning the desired affect).

It uses a post method therefore the recordset uses form variable. But when i preview in browser(either IE or Firefox or Netscape) and enter text the browser comes back with something like the page does not exist or can't be found? It's not the recordset and result page so is there something else i'm missing?

View Replies View Related

Joining 2 Result Sets

i want to left join result sets together coming from two different databases based on a common field storenumber. They are separate databases as per management design.

Basically it should match rows based on the store number, those who don't have matches should display only the storenumber and no other info like: Code:

Store Q1 Q2 Q3 Q4
1 x x x x
2 x x x x
3 <--No data in 3, just display storenumber
4 x x x x

View Replies View Related

Keep Track Of The Query Result

I have a search form that display result based on the user search criteria.
the result displayed through paging when the user select a specific product description to look at then go back
to the search result the user will lose it's place.

my question is:
How can I let the user search the database for all the products that I have then select a specific product to read the description of it
then be able to go back to the original search. I have the first part working fine but to be able to go back to the original search that I need your help. Code:

View Replies View Related

Refreshing Page With Result Set

My web page is calling a result set that is displayed on the page. If I click refresh, it pops a warning saying, "The page cannot be refreshed without resending the information." I then have to click RETRY in order to refresh the page.

Is there anyway to automatically perform that action so that my users will not have to be prompted?

View Replies View Related

How To Deal With Big Query Result?

In my search application, user can type a number to search. I use LIKE in my
query.

If a query result generates over 10,000 recordsets, it may several minutes
to run.

Is there a way to only query certain recordset at a time?

I found in SQL you can use "TOP". Like select TOP 100.... it will return
only top 100 records.

Is there a way to query may be from 101 to 200 then from 201 to 300...

My query is like: Select * from Product where PartNumber like '%" PartNumber
"%'

Any idea is welcome.

View Replies View Related

Execute Asp From Database Result?

I'm working on a application where I've created a couple of Sub routines I call them from my ASP page.

But I would love to put the hole HTML including my "call showOffers" in my database and when I get the result set do I want to execute the "call showOffer". Is this possible?

View Replies View Related

Asp Script For Forms Result

I am struggling to come up with a way to save a forms' results, to a text file, but the name of the text file comes from the input of a user name on another forms...

ex. john doe enters pg1 & enters his name in a space on the page (form) . this links him to the next page, pge_form. I need the results of page_form to be named johndoe.txt

View Replies View Related

Optimizing - Large Db Result Set

when creating a webpage that must display a large result set, the page load time is unbearable. Unfortunately, there are a lot of records and they all need to be displayed, at once, on this one page.

To reduce file size, I have minimized the amount of HTML tags used to dislay these records. My only other idea is to write javascript matrix to hold the data, and then to use dom to create the page on the client side. Are there any tried and true ways of speeding up page loads?

View Replies View Related

Database Result Error

We have completed a clean install of Microsoft Server 2003
on our Web Server and are using frontpage 2002 for our web
site. On our asp page (www.dgf.k12.mn.us/contactus.asp) we
are getting the following error:

Database Results Error
Description: Syntax error in query. Incomplete query
clause.
Number: -2147217900 (0x80040E14)
Source: Microsoft JET Database Engine
www.dgf.k12.mn.us/contactus.asp

We cannot find any kind of documentation on this error.
Has anyone else seen this kind of error, and know how to
fix it?

View Replies View Related

Result To Multiple Pages

This is my first post to this newsgroup, I have question regarding showing resultset to html. Let's say I have in resultset 200 rows, and I'd like to show on each page 10 of them, so it could look like for example google search results:

Results 1 - 10 of about 17,700 for "asp search engine" [results]
Result Page: [1] 2 3 4 5 6 7 8 9 10 Next

Is there some helpful script/guide?

View Replies View Related

Count The Result In A Record Set.

I have a question about looping in a recordset. I'm actually showing some actualities in a page, based on a start and end date. All is working well. My problem is that I put a <hr> between each news, but I don't want a <hr> at the end of the last news. I would like to count how many results I have in my recordset so I would be able not to show the last <hr>.

View Replies View Related

Realtime Result Checking

i have a command object that executes an insert for a billing system.i also have a recordset object that creates a cursor to check. the credits status before. Another to check the credits status after.however, both appear to be the same when i do a response.write .How could i check the credits before and the credits after online and realtime ?

View Replies View Related

Return A Cgi Script Result

How can I have ASP call a cgi script, via Form-GET, and then display the results in the same ASP page?

View Replies View Related

SQL Result To Excel File.

I have a SQL query to generate the report for me in SQL Query Analyzer. I would like to create an ASP page that has a link, and when people click on that link, it will prompt a download message (open or save) in Excel format. Is there any codes can do this?

View Replies View Related

Get A Result Page To Display

I have a search page that allows user to search a SQL database and want the result page to display on a search page. How do I get the result page to display on a search page when user clicks a search button. Have you got any sample codes to demonstrate this?

View Replies View Related

Second Table From Sp_help Result

I am using SQL Server 2000 and I want to be able to list out all the field names and their datatypes from a particular table. I found out that sp_help does that but unfortunately when using a recordset, I could only get the first of the 3 tables.

Is there anyway to get the second table using a recordset because that is the one with all the info about the fields and their datatypes? Or is there another way of finding out the datatypes of the fields?

View Replies View Related

System Of Game Result

Eu gostaria de criar a seguinte página e gostaria da ajuda de todos. I have a data base (jogos.mdb) that he has a name table (resultados). In the table resulted I have the

fields: data | time1 | resultado1 | time2 | resultado2

I want to create a command that goes to show these information nu'ma line of a page any. Example of as he will have to be shown: 12/03/2006 São Paulo 1 x Saints 0 . I would like to not only call these information a data base that goes to be in another site and in that the data base will be housed. I do not have idea of as I can make this. They can help me to create this page.

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved