Results 1 to 4 of 4

Thread: Select Case???

  1. #1

    Thread Starter
    Member
    Join Date
    Jan 2001
    Location
    Hellmer/Quebec/Canada
    Posts
    32
    is the syntaxe for a select case in ASP is the same then in VB???
    Forza Scuderia Ferrari

  2. #2
    Banned
    Join Date
    Feb 2000
    Location
    Edmonton, AB, Canada
    Posts
    64
    Certainly is!

  3. #3
    Black Cat JoshT's Avatar
    Join Date
    Nov 2000
    Location
    WNY, USA
    Posts
    4,032
    It should be.

    Josh

    Code:
    Select Case se
    		Case "yahoo"
    			Response.Redirect "http://search.yahoo.com/bin/search?p=" & Server.URLEncode(ss)
    			Response.End
    		Case "altavista"
    			Response.Redirect "http://www.altavista.com/cgi-bin/query?q=" & Server.URLEncode(ss) & "&kl=XX&pg=q&Translate=on&search.x=9&search.y=11"
    			Response.End
    		Case "lycos"
    			Response.Redirect "http://www.lycos.com/srch/?lpv=1&loc=searchhp&query=" & Server.URLEncode(ss)
    			Response.End
    		Case "excite"
    			Response.Redirect "http://search.excite.com/search.gw?search=" & Server.URLEncode(ss)
    			Response.End
    		Case "northernlight"
    			Response.Redirect "http://www.northernlight.com/nlquery.fcg?cb=0&qr=" & Server.URLEncode(ss)
    			Response.End
    	End Select

  4. #4

    Thread Starter
    Member
    Join Date
    Jan 2001
    Location
    Hellmer/Quebec/Canada
    Posts
    32
    thankz
    Forza Scuderia Ferrari

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width