Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am maintaining some legacy Visual Basic ASP code and I keep seeing <% ...code here... %> and I do not understand what this is used for. It seems to be some sort of blocking method but I cannot be sure and Google has been of no help because it is an odd search string. I realize this is a very "basic" question but any quick answer would be great.

share|improve this question
Are you talking about Active Server Pages using VBScript? – p.campbell Jun 18 '12 at 1:45
I didn't know it was an ASP thing. See my comment on the answer. – Brandon Bearden Jun 18 '12 at 1:59

1 Answer

up vote 6 down vote accepted

The <% %> tags are not part of Visual Basic Scripting, they is part of ASP.

They are called ASP Code Blocks.

Also, you're more than likely working with VBScript which is a different language from BASIC.

share|improve this answer
Here's the link for classic ASP (not to be confused with ASP.NET): msdn.microsoft.com/en-us/library/ms524929.aspx – Kane Jun 18 '12 at 1:51
@Kane thank you, updated my link. – Oberon Jun 18 '12 at 1:53
Thank you for your response. I have no idea why people down voted me on this. I tried to figure this out on my own and wouldn't have posted a question if I hadn't tired on my own. I don't know ASP or VB at ALL. I am a php developer. I have never used ASP before this. – Brandon Bearden Jun 18 '12 at 1:59
@BrandonBearden Essentially, they are almost the same thing as <?php ... ?> – Oberon Jun 18 '12 at 2:01
Thank you very much for your response. – Brandon Bearden Jun 18 '12 at 2:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.