Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6101749
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T13:32:07+00:00 2026-05-23T13:32:07+00:00

I have a SELECT CASE statement that I am trying to get working. Essentially

  • 0

I have a SELECT CASE statement that I am trying to get working. Essentially i want to query for specific group numbers in our DBase and show the respective information with an include file. I am getting an error, but am unable to diagnose what is actually causing the error…

Is my statement not structured correctly?

<% 
            select case session("memGroup")
            case "123456789","987654321"
            'Show forms for Company ABC
        %>

            <!--#include virtual="/members/_includes/formsABC.asp"-->

        <%             
            case "333333333","22222222","111111111" 
            'Show forms for Company DEF
        %>

            <!--#include virtual="/members/_includes/formsDEF.asp"-->

        <%
          end select
        %>
<!--then show forms for everyone else-->

<!--#include virtual="/members/_includes/formsEveryoneElse.asp"-->
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T13:32:08+00:00Added an answer on May 23, 2026 at 1:32 pm

    ASP will process all the includes first, so this is not the best way of doing this as includes are expensive, I would do something like this instead:

    <% 
        Select Case Session.Contents("memGroup")
            Case "123456789", "987654321":
                'Show forms for Company ABC
                Server.Execute("/members/_includes/formsABC.asp")
            Case "333333333", "22222222", "111111111":
                'Show forms for Company DEF
                Server.Execute("/members/_includes/formsDEF.asp")
            Case Else:
                Server.Execute("/members/_includes/formsEveryoneElse.asp")
        End Select
    %>
    

    http://msdn.microsoft.com/en-us/library/ms525849(v=vs.90).aspx
    https://web.archive.org/web/20211020134119/https://www.4guysfromrolla.com/webtech/022504-1.shtml

    As a side note if the web server is running IIS 7 or greater you will need to change web.config to see ASP error messages:

    <configuration>
       <system.webServer>
          <asp scriptErrorSentToBrowser="true"/>
          <httpErrors errorMode="Detailed"/> 
       </system.webServer>
    </configuration>
    

    Also you will need to turn off “Show Friendly HTTP Error Messages” in Internet Explorer or use another browser to view the error.

    http://classicasp.aspfaq.com/general/why-do-i-get-a-500-internal-server-error-for-all-asp-errors.html

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a select query that currently produces the following results: Description Code Price
I want to have a select-only ComboBox that provides a list of items for
Suppose I have a SELECT statement that returns some set of results. Is there
I am trying to find a way to have a SELECT statement return the
I have some SQL that does an order by case statement. It works fine.
I have a stored proc select statement that lookes like that: SELECT p.ID AS
I have a complex query that joins different tables to get the count. There
I have a standard insert into / select statement that is formatted similar to
I have a select statement with calculated columns and I would like to use
I have a bit of SQL that is almost doing what I want it

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.