473,395 Members | 1,761 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Compiler Error Message: BC30203: Identifier expected.

I am having trouble resolving this issue:

Server Error in '/test' Application.
--------------------------------------------------------------------------------

Compilation Error
Description: An error occurred during the compilation of a resource
required to service this request. Please review the following specific
error details and modify your source code appropriately.

Compiler Error Message: BC30203: Identifier expected.

Source Error:

Line 7: Imports ew
Line 8: Namespace test
Line 9: Public Class 1aDirProddata
Line 10:
Line 11: ' Master / Detail arguments
Source File: C:\Inetpub\wwwroot\test\App_Code\1aDirProddata.vb Line:
9
Can anyone tell me how i can correct this?

Thanks in advance

Apr 28 '06 #1
7 12852
vb identifiers like a class name, must start with an alpha.

-- bruce (sqlwork.com)
"Tony Tone" <av********@gmail.com> wrote in message
news:11**********************@e56g2000cwe.googlegr oups.com...
I am having trouble resolving this issue:

Server Error in '/test' Application.
--------------------------------------------------------------------------------

Compilation Error
Description: An error occurred during the compilation of a resource
required to service this request. Please review the following specific
error details and modify your source code appropriately.

Compiler Error Message: BC30203: Identifier expected.

Source Error:

Line 7: Imports ew
Line 8: Namespace test
Line 9: Public Class 1aDirProddata
Line 10:
Line 11: ' Master / Detail arguments
Source File: C:\Inetpub\wwwroot\test\App_Code\1aDirProddata.vb Line:
9
Can anyone tell me how i can correct this?

Thanks in advance

Apr 28 '06 #2
The name of a class may not start with a number.

"Tony Tone" <av********@gmail.com> wrote in message
news:11**********************@e56g2000cwe.googlegr oups.com...
I am having trouble resolving this issue:

Server Error in '/test' Application.
--------------------------------------------------------------------------------

Compilation Error
Description: An error occurred during the compilation of a resource
required to service this request. Please review the following specific
error details and modify your source code appropriately.

Compiler Error Message: BC30203: Identifier expected.

Source Error:

Line 7: Imports ew
Line 8: Namespace test
Line 9: Public Class 1aDirProddata
Line 10:
Line 11: ' Master / Detail arguments
Source File: C:\Inetpub\wwwroot\test\App_Code\1aDirProddata.vb Line:
9
Can anyone tell me how i can correct this?

Thanks in advance

Apr 28 '06 #3
will need to look at some code to decipher that.

--
Swanand Mokashi
Microsoft Certified Solution Developer (.NET) - Early Achiever
Microsoft Certified Application Developer (.NET)

http://www.dotnetgenerics.com/
DotNetGenerics.com -- anything and everything about Microsoft .NET
technology ...

http://www.swanandmokashi.com/
http://www.swanandmokashi.com/HomePage/WebServices/
Home of the Stock Quotes, Quote of the day and Horoscope web services
"Tony Tone" <av********@gmail.com> wrote in message
news:11**********************@e56g2000cwe.googlegr oups.com...
I am having trouble resolving this issue:

Server Error in '/test' Application.
--------------------------------------------------------------------------------

Compilation Error
Description: An error occurred during the compilation of a resource
required to service this request. Please review the following specific
error details and modify your source code appropriately.

Compiler Error Message: BC30203: Identifier expected.

Source Error:

Line 7: Imports ew
Line 8: Namespace test
Line 9: Public Class 1aDirProddata
Line 10:
Line 11: ' Master / Detail arguments
Source File: C:\Inetpub\wwwroot\test\App_Code\1aDirProddata.vb Line:
9
Can anyone tell me how i can correct this?

Thanks in advance

Apr 28 '06 #4
That is interesting to know. Does C# allow class names to start with numeric
?

--
Swanand Mokashi
Microsoft Certified Solution Developer (.NET) - Early Achiever
Microsoft Certified Application Developer (.NET)

http://www.dotnetgenerics.com/
DotNetGenerics.com -- anything and everything about Microsoft .NET
technology ...

http://www.swanandmokashi.com/
http://www.swanandmokashi.com/HomePage/WebServices/
Home of the Stock Quotes, Quote of the day and Horoscope web services
"Marina Levit [MVP]" <so*****@nospam.com> wrote in message
news:eK**************@TK2MSFTNGP02.phx.gbl...
The name of a class may not start with a number.

"Tony Tone" <av********@gmail.com> wrote in message
news:11**********************@e56g2000cwe.googlegr oups.com...
I am having trouble resolving this issue:

Server Error in '/test' Application.
--------------------------------------------------------------------------------

Compilation Error
Description: An error occurred during the compilation of a resource
required to service this request. Please review the following specific
error details and modify your source code appropriately.

Compiler Error Message: BC30203: Identifier expected.

Source Error:

Line 7: Imports ew
Line 8: Namespace test
Line 9: Public Class 1aDirProddata
Line 10:
Line 11: ' Master / Detail arguments
Source File: C:\Inetpub\wwwroot\test\App_Code\1aDirProddata.vb Line:
9
Can anyone tell me how i can correct this?

Thanks in advance


Apr 28 '06 #5
I would imagine not, though I don't recall exactly. I would be surprised if
it did.

"Swanand Mokashi" <sw***********@swanandmokashi.com> wrote in message
news:OH**************@TK2MSFTNGP04.phx.gbl...
That is interesting to know. Does C# allow class names to start with
numeric ?

--
Swanand Mokashi
Microsoft Certified Solution Developer (.NET) - Early Achiever
Microsoft Certified Application Developer (.NET)

http://www.dotnetgenerics.com/
DotNetGenerics.com -- anything and everything about Microsoft .NET
technology ...

http://www.swanandmokashi.com/
http://www.swanandmokashi.com/HomePage/WebServices/
Home of the Stock Quotes, Quote of the day and Horoscope web services
"Marina Levit [MVP]" <so*****@nospam.com> wrote in message
news:eK**************@TK2MSFTNGP02.phx.gbl...
The name of a class may not start with a number.

"Tony Tone" <av********@gmail.com> wrote in message
news:11**********************@e56g2000cwe.googlegr oups.com...
I am having trouble resolving this issue:

Server Error in '/test' Application.
--------------------------------------------------------------------------------

Compilation Error
Description: An error occurred during the compilation of a resource
required to service this request. Please review the following specific
error details and modify your source code appropriately.

Compiler Error Message: BC30203: Identifier expected.

Source Error:

Line 7: Imports ew
Line 8: Namespace test
Line 9: Public Class 1aDirProddata
Line 10:
Line 11: ' Master / Detail arguments
Source File: C:\Inetpub\wwwroot\test\App_Code\1aDirProddata.vb Line:
9
Can anyone tell me how i can correct this?

Thanks in advance



Apr 28 '06 #6
I don't think so. Java and PHP don't allow them either.

Identifiers are used for class names, method names, and variable names.

An identifier may be any descriptive sequence of uppercase and lowercase letters,
numbers, or the underscore and dollar-sign characters.

They must not begin with a number, because they could be confused with a numeric literal.

IIRC, this limitation comes from the Unicode Standard Annex 15.

I could be wrong, though, so I'll welcome further illumination.

Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================

"Swanand Mokashi" <sw***********@swanandmokashi.com> wrote in message
news:OH**************@TK2MSFTNGP04.phx.gbl...
That is interesting to know. Does C# allow class names to start with numeric ?

--
Swanand Mokashi
Microsoft Certified Solution Developer (.NET) - Early Achiever
Microsoft Certified Application Developer (.NET)

http://www.dotnetgenerics.com/
DotNetGenerics.com -- anything and everything about Microsoft .NET technology ...

http://www.swanandmokashi.com/
http://www.swanandmokashi.com/HomePage/WebServices/
Home of the Stock Quotes, Quote of the day and Horoscope web services
"Marina Levit [MVP]" <so*****@nospam.com> wrote in message
news:eK**************@TK2MSFTNGP02.phx.gbl...
The name of a class may not start with a number.

"Tony Tone" <av********@gmail.com> wrote in message
news:11**********************@e56g2000cwe.googlegr oups.com...
I am having trouble resolving this issue:

Server Error in '/test' Application.
--------------------------------------------------------------------------------

Compilation Error
Description: An error occurred during the compilation of a resource
required to service this request. Please review the following specific
error details and modify your source code appropriately.

Compiler Error Message: BC30203: Identifier expected.

Source Error:

Line 7: Imports ew
Line 8: Namespace test
Line 9: Public Class 1aDirProddata
Line 10:
Line 11: ' Master / Detail arguments
Source File: C:\Inetpub\wwwroot\test\App_Code\1aDirProddata.vb Line:
9
Can anyone tell me how i can correct this?

Thanks in advance



Apr 28 '06 #7
Thanks a lot... That really helped

Apr 28 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: andy.herrera | last post by:
I'm getting this Error Message. Expected ';' Please Select One: <form name="form1"> <<------------ Error is here. <select name="selectTrans" onChange="If (this.value == 'checkout')...
1
by: Franko | last post by:
I get the following error. Please help c:\inetpub\wwwroot\WebApplication1\WebForm2.aspx(6,38): error CS1001: Identifier expected c:\inetpub\wwwroot\WebApplication1\WebForm2.aspx(6,52): error...
1
by: Franko | last post by:
I get the following error. Please help c:\inetpub\wwwroot\WebApplication1\WebForm2.aspx(6,38): error CS1001: Identifier expected c:\inetpub\wwwroot\WebApplication1\WebForm2.aspx(6,52): error...
3
by: Jon | last post by:
I'm learning about datatables. When using the example provided by MS in the ..NET Framework Class Library for DATATABLE (see below) I get an error on line 3 that says "Type expected". Is something...
4
by: Jon Rea | last post by:
I have the following code that works on Visual C++ 2005 and on GCC. bool VectorContains( const std::vector<int>& vect, int value ) { std::vector<int>::const_iterator iter; for( iter =...
0
by: alokverma | last post by:
Hi all, I am trying to compile some code on HP-UX-Itanium faluire. using aCC: HP C/aC++ B3910B A.06.12 I have written a sample code below and using the following compilation command. *aCC...
3
by: rorni | last post by:
Hi, I'm porting code from Windows to HP-UX 11, compiling with g++. I'm getting a compilation error on the system's debug.h include file, which is included very indirectly through a series of...
1
by: sanctus | last post by:
I have a Matlab code which works fine in windows. Now I installed Xubuntu (because this way I have admin rights(=root) which I don't have on windows) and want to use the same code. To be able to...
2
by: camzgon121 | last post by:
Hi guys, I have this code and when I try to compile and run it gives me an <identifier> expected error. The code with the irrelevant parts taken out. package ACCOUNT; import...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.