473,387 Members | 1,638 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Dropdown in ASP Page

I have three dropdowns in one of my asp page. Each dropdown does return a
huge amount of records , 5000 to be precise.

The huge amount of data makes the page slower to load and also makes it
extermly diffcult for users to choose one value from the list.

Does someone have a better solution to implement this?

I guess one of the things that I am keen on is to have a textbox (readonly)
and a pop up window to allow users to search for a particular product and
then clicking the found product closes the pop up windwo and adds the
selected product value to the textbox.

Does anyone know how to transfer the value of the selected product to the
textbox on the main form.

Regards
Jul 19 '05 #1
4 1707
JP SIngh wrote:
I have three dropdowns in one of my asp page. Each dropdown does
return a huge amount of records , 5000 to be precise.

The huge amount of data makes the page slower to load and also makes
it extermly diffcult for users to choose one value from the list.

Does someone have a better solution to implement this?


Use a dynamic listbox instead of a dropdown. Download my demo from
http://www.thrasherwebdesign.com/ind...asp&c=&a=clear
to see one way of doing it.

Bob Barrows

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Jul 19 '05 #2
On Fri, 13 Aug 2004 09:52:49 +0100, "JP SIngh" <no**@none.com> wrote:
I have three dropdowns in one of my asp page. Each dropdown does return a
huge amount of records , 5000 to be precise.

The huge amount of data makes the page slower to load and also makes it
extermly diffcult for users to choose one value from the list.

Does someone have a better solution to implement this?
Of course. Write your code so it doesn't return 5,000 records.
Nobody's going to look at that many anyway.
I guess one of the things that I am keen on is to have a textbox (readonly)
Why would it be read only?
and a pop up window to allow users to search for a particular product and
then clicking the found product closes the pop up windwo and adds the
selected product value to the textbox.
So do it. We aren't stopping you. :)
Does anyone know how to transfer the value of the selected product to the
textbox on the main form.


How's this?

Response.Write "<input type="text" name="product" value=" &_
Request.QueryString(Product) & ">"

Jeff
Jul 19 '05 #3
If you still want to implement a pop-up search you would be belooking at some
client-side scripting in your future.

basically you will want to open the little search window (probably using
somehting like window.open() ) and allow the user to search, so minimujm one
small searcyh form page and one search results page.

At this point you have two options, either pass back the list of search
results to fill the dropdown or pass back only a single results. My advice
would be to pass back just a single result. My assumption is that in addition
to what your displaying to the user you may have some sort of id in the
backgroundthat your code prefers to deal with. In this case you would need to
pass back both the display text andthe key/id to the original page.

The eaisest way to handle this would be to build a small javascript function
in the original page tat accepts two values and then assignes them to a text
input/hidden input pair. The child window (popup) would call the function
based on it's parent object reference, so it would be something like:
parent.yourFunction(textVariable,idVariable);

So basically you would want to create your links in your search results with
an onClick function to call that parent function then call the window.close
method to get rid of the little popup window.

If you need additional search forms based on values chosen from earlier
searches (ie, search #2 is limited by the results tey chose from search #1)
thn you would just pass those limiting values in the querystring of your
window.open call to open the second search popup.

-T
Jul 19 '05 #4
Use the following method:

Previous Next
1 2 3 4 5 6 7 8 9 10

and only put 20 to 50 per page. (do this in asp and it will automatically
create your pages for you)

Example:

If request.querystring("page") = "" Then

pageno = 1

Else

pageno = request.querystring("page")

End If

'Number of pages 50

rs.pagesize = 50

totalpages = CInt(rs.pagecount)

'which page to work with

rs.absolutepage = pageno

If totalpages > 1 Then

'forward/next buttons

response.write"<tr><td>"

'see wether to write a previous

If pageno > 1 Then

response.write "<A href=flyer.asp?page=" & pageno - 1 &
">Previous</a>&nbsp;"

End If

'see if we're not at the last page!

If int(pageno) < int(totalpages) Then

response.write "<A href=flyer.asp?page=" & pageno + 1 & ">Next</a>&nbsp;"

End If

response.write("<BR>")

'do the page numbers

For A = 1 To totalpages

'check to see if it is the current page - write in red if it is

If Int(A) = Int(pageno) Then

Response.write "<font color=red>" & A & "</font>&nbsp;"

Else

Response.write "<A href=flyer.asp?page=" & A & ">" & A & "</font></a>&nbsp;"

End If

Next

response.write"</tr></td>"

End If

x=0

'now display the records

For x = 1 To 50

If rs.EOF Then

'we're at the end of the recordset so exit..

Exit For
--
Regards,

Carroll
"JP SIngh" <no**@none.com> wrote in message
news:OX**************@TK2MSFTNGP11.phx.gbl...
I have three dropdowns in one of my asp page. Each dropdown does return a
huge amount of records , 5000 to be precise.

The huge amount of data makes the page slower to load and also makes it
extermly diffcult for users to choose one value from the list.

Does someone have a better solution to implement this?

I guess one of the things that I am keen on is to have a textbox (readonly) and a pop up window to allow users to search for a particular product and
then clicking the found product closes the pop up windwo and adds the
selected product value to the textbox.

Does anyone know how to transfer the value of the selected product to the
textbox on the main form.

Regards

Jul 19 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Joseph Barron | last post by:
Here is a SIMPLE problem that I'm trying to solve. It works in Netscape 6.2, but IE6 gives ""No such interface supported." Below are page1.htm and page2.htm . In page1.htm, there are two...
0
by: Henke | last post by:
Hi, I have done some research about my problem I have when using the "back button" in IE to go back to a page with two dropdown lists. The both dropdown lists are populated with data. The...
8
by: Kris Rockwell | last post by:
Hello, I have done the following to bind data to a DropDown box: 1. Drag SQLServer table onto web form to create data connection and data adapter. 2. Generate dataset by right-clicking on...
6
by: Mark | last post by:
I have two dropdown lists. Both have autopostback set to true. In both dropdowns, when you select an item from the list, it redirects to the Value property of the dropdown. Nothing fancy. ...
2
by: Mike Collins | last post by:
I cannot get the correct drop down list value from a drop down I have on my web form. I get the initial value that was loaded in the list. It was asked by someone else what the autopostback was...
3
by: devNorway | last post by:
I have been struggling with a problem for days now, and searched for related problems and solutions but had no luck. I have two dropdown listboxes where the first is populated in page load and...
1
by: Oleg | last post by:
Hi, I'm having a problem with page caching and therefore reusing dropdown box contents. Scenerio: user1 has security to see list of three items(.aspx populates it with three items only) in...
2
by: Peter | last post by:
ASP.NET 2003 In the DataGrid how do I select current cell value in the dropdown box when I click on the edit link, currently when I click on the edit link in the DataGrid the dropdown box...
11
by: tokcy | last post by:
Hi everyone, I am new in php and ajax, i am facing the prob while i click on element of first drop down then in second dropdown all element showl come from database. I mean i have three dropdown 1....
5
by: =?Utf-8?B?Y2hlY2tyYWlzZXJAY29tbXVuaXR5Lm5vc3BhbQ== | last post by:
I have a VS 2008 ASP.NET webform that has a reportview tag on it, accessing an .RLDC report in local report. The columns for the report are essentially: Month Item #1 Item#2 Item#3 ...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.