asp tutorials, asp.net tutorials, sample code, and Microsoft news from 15Seconds
Data Access  |   Troubleshooting  |   Security  |   Performance  |   ADSI  |   Upload  |   Email  |   Control Building  |   Component Building  |   Forms  |   XML  |   Web Services  |   ASP.NET  |   .NET Features  |   .NET 2.0  |   App Development  |   App Architecture  |   IIS  |   Wireless
 
Pioneering Active Server
 Power Search








Active News
15 Seconds Weekly Newsletter
• Complete Coverage
• Site Updates
• Upcoming Features

More Free Newsletters
Reference
News
Articles
Code Samples
Components
Tools
New
Free
Downloads
Vendors
FAQ
Feedback
Books
Links
DL Archives
Community
Messageboard
List Servers
Mailing List
WebHosts
Consultants
Tech Jobs
15 Seconds
Home
Site Map
Press
Legal
Privacy Policy
internet.commerce














internet.com
IT
Developer
Internet News
Small Business
Personal Technology
International

Search internet.com
Advertise
Corporate Info
Newsletters
Tech Jobs
E-mail Offers

HardwareCentral
Compare products, prices, and stores at Hardware Central!

On December 20th, 2000 Peter McMahon submitted a code sample titled Populating a Selectbox. The methods that he describes for selecting the correct item for the current record works quite well for small recordsets.

If you have the need for a larger recordset or perhaps many select boxes that are read from a database on a page it can run into a performance issue with the conditional check that is done for each loop. The following method can be used in the case where you have larger recordsets or multiple select boxes on a form and you need that little performance boost. It does result in a duplicate item in your select box at the top of the list, but I've found that this is usually acceptable.


<SELECT NAME="cboMyfield">
<%
   Dim objConn, objRs, objRs2
   Dim lItemId, sItemDesc
 
   Set objConn = Server.CreateObject("ADODB.Connection")
   objConn.Open "DSN=MyDSN;"
   lItemId = Request("ThisId")
   objRs = objConn.Execute("SELECT Description FROM LookupTable " & _
        "WHERE SomeIdField = " & lItemId)
 
   sItemDesc = objRs.Fields("Description")
   objRs2.Close
%>
   <OPTION VALUE="<% = lItemId %>"><% = sItemDesc %></OPTION>
<%
   Set objRs2 = objConn.Execute("SELECT CategoryID, Description FROM " & _
       "DataTable")
 
   While Not objRs2.EOF
%>
     <OPTION
VALUE="<%=objRs2("CategoryID")%>><%=objRS2("Description")%></OPTION>
<%
     objRs2.MoveNext
   Wend

   objRs2.Close
   Set objRs = Nothing
   Set objRs2 = Nothing
%>
</SELECT>
<!--More select boxes and HTML code.......-->
...
...
<%
   objConn.Close
   Set objConn = Nothing
%>

Submitted by Joel Gray



email this code sample to a colleague


Support the Active Server Industry



JupiterOnlineMedia

internet.comearthweb.comDevx.commediabistro.comGraphics.com

Search:

Jupitermedia Corporation has two divisions: Jupiterimages and JupiterOnlineMedia

Jupitermedia Corporate Info


Legal Notices, Licensing, Reprints, & Permissions, Privacy Policy.

Advertise | Newsletters | Tech Jobs | Shopping | E-mail Offers

Solutions
Whitepapers and eBooks
IBM eBook: Planning a Service Oriented Architecture
IBM eBook: Choosing the Right Architecture--What It Means for You and Your Business
Microsoft Article: Will Hyper-V Make VMware This Decade's Netscape?
Avaya Article: Using Intelligent Presence to Create Smarter Business Applications
Intel Go Parallel Article: Getting Started with TBB on Windows
Microsoft Article: 7.0, Microsoft's Lucky Version?
Avaya Article: How to Feed Data into the Avaya Event Processor
IBM Article: Developing a Software Policy for Your Organization
Microsoft Article: Managing Virtual Machines with Microsoft System Center
Intel Go Parallel Article: Intel Threading Tools and OpenMP
HP eBook: Storage Networking , Part 1
Microsoft Article: Solving Data Center Complexity with Microsoft System Center Configuration Manager 2007
MORE WHITEPAPERS, EBOOKS, AND ARTICLES
Webcasts
HP Video: StorageWorks EVA4400 and Oracle
HP Webcast: Storage Is Changing Fast - Be Ready or Be Left Behind
Microsoft Silverlight Video: Creating Fading Controls with Expression Design and Expression Blend 2
MORE WEBCASTS, PODCASTS, AND VIDEOS
Downloads and eKits
Red Gate Download: SQL Toolbelt and free High-Performance SQL Code eBook
Iron Speed Designer Application Generator
MORE DOWNLOADS, EKITS, AND FREE TRIALS
Tutorials and Demos
Silverlight 2 App and Walkthrough: Leverage Silverlight 2 with SQL Server and XML
IBM Article: Enterprise Search--Do You Know What's Out There?
HP Demo: StorageWorks EVA4400
Microsoft Article: The Progress and Promise of Deep Zoom
Microsoft How-to Article: Get Going with Silverlight and Windows Live
MORE TUTORIALS, DEMOS AND STEP-BY-STEP GUIDES