|
My dilemma; I had a recordset selection of 1500+ records filling a drop-down list. With no real intellisense search for ASP Browser DropDowns. To appreciate the response time and ease of implementation, I would reccommend using larger set of values. Code: ASP 2.0 & VBScript |
| |
Overall Rating:
 User Rated
| |
Your Right - Sorry  Written by Anonymous User (#1547-156) from Massachusetts (Monday, January 07, 2002)
 |
Strengths: no comment Weaknesses: no comment Details: The effect of the hilighted input box is not essential to it the list working.
Also, the (list - 1) should have been caught earlier. I submitted this as a tip and like other publishers was quick to post before completely testing.
But nonetheless a great way to lookup data in a listbox, without having to resubmit pages. |
Code Doesn't Work  Written by Anonymous User (#1776-167) from Harrisburg, PA (Tuesday, December 04, 2001)
 |
Strengths: no comment Weaknesses: no comment Details: If you want to make this code work you must change the following:
1. Move the first javascript block to the very end. Its the one that starts with:
frmSrc.srcSearch.focus();
2. Modify this line:
for y = 0 to oFrm.srcList.Length
To this:
for y = 0 to (oFrm.srcList.Length - 1) |
| |
|