Asp to Asp.net

  • Thread starter Thread starter bob123
  • Start date Start date
B

bob123

Hi I am new to this group. I am currently converting an asp application to
asp.net, I am getting this error and unable to fix it,

Compiler Error Message: BC30203: Identifier expected.

Source Error: line 299


Line 297:
Line 298:Line
299: sql =" SELECT TOP 25 tblEvent.case_no, tblEvent.entered_by AS Expr1,
tblEvent.offender_id, tblEvent.stu_id, tblEvent.date_of_event,
tblEvent.offendertype, " &_
Line 300: " tblLKP_Location.Location,
tblLKP_Offender_type.Offender_type " &_
Line 301: " FROM tblEvent INNER JOIN " &_

I am bit confused, if some one could help me out it would be great.thanx
 
You're missing the spaces between the '&' and '_' characters ...

.... this ...
offendertype, " &_ '<- no space between & and _
.... needs to be this ...
offendertype, " & _ '<- space between & and _

etc.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top