| | |
Keyword Search and return match percentage
Please support our ASP advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
![]() |
•
•
Join Date: Jul 2006
Posts: 1
Reputation:
Solved Threads: 0
Hi , I am 1st time in this forum. i need to do a search using asp . The search result will return the keyword match percentage with the word in database. example: http://www.newport.com/searchresults...Opto-Mechanics
i am running out of time and still cannot find any resources on the web. Does anyone know how to do this and maybe can provide me some resources. Thanks a lot....
i am running out of time and still cannot find any resources on the web. Does anyone know how to do this and maybe can provide me some resources. Thanks a lot....
•
•
Join Date: Jun 2005
Posts: 3
Reputation:
Solved Threads: 0
•
•
•
•
Originally Posted by yawboon
Hi , I am 1st time in this forum. i need to do a search using asp . The search result will return the keyword match percentage with the word in database. example: http://www.newport.com/searchresults...Opto-Mechanics
i am running out of time and still cannot find any resources on the web. Does anyone know how to do this and maybe can provide me some resources. Thanks a lot....
If you do a quick reccord count and store it in a variable,
Dim mySQL
mySQL = "Select Count(*) AS myTotal FROM yourdata"
Dim myRS
Set myRS = Server.CreateObject("ADODB.RecordSet")
myRS.Open mySQL, myConn
Record_size = myRS("myTotal")
and then code your search to return the number of records,
Dim iRecordCount
iRecordCount = objPagingRS.RecordCount
Then simple math equasion with your variables should give you the percentage
BTW the database search samples at http://www.asp101.com/ have some very well commented scripts that do this sort of thing
Regards
Roy
![]() |
Similar Threads
- Keyword search in a web page (Java)
- Looking for Good Stats Program (Search Engine Optimization)
- Getting the start / end of string in regex through match objects (Python)
- Search Script help (PHP)
- Cannot enter Japanese in the keyword search box (OS 7 / 8 / 9)
Other Threads in the ASP Forum
- Previous Thread: Passing Value to other page
- Next Thread: dual simultanious actions from 1 form
| Thread Tools | Search this Thread |
archive asp asp.net aspandmssqlserver2005 aspandmssqlserver2005connection aspconnection connection database databaseconnection dreamweaver excel fso iis msmsql mssql2005 mssqlserver2005 mssqlserver2005andasp mssqlserverandasp opentextfile record searchbox selectoption single specfic sqlserver sqlserverconnection windows7





