How can i include both C# and vb.net classes in same
solution?
Answer Posted / roopesh m.k
Step 1:
It is possible,In app-Code folder create sub folders
named VB,CS(as you like) and clreate .vb class files in the
folder named VB and .cs class files in the CS folder.
Step 2:
Go to web.config file and mention the following
<compilation debug="false">
<codeSubDirectories>
<add directoryName="VB" />
<add directoryName="CS" />
</codeSubDirectories>
</compilation>
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
Explain how can we access static variable?
What is slidemaster?
In order to bind the data from a data source to the Repeater control what property is set and what method must you call in your code,?
What is the extension of master page in asp.net?
What is enableviewstatemac in asp net?
What are the various types of cookies in asp.net?
What is the equivalent of date() and time() in asp.net?
Mention the namespace that is used to include .net data provider for sql server in .net code?
How can we prevent browser from caching an aspx page?
Why is string called immutable data type?
What is custom attribute? How to create?
Where sessions are stored?
How can you handle unmanaged code exceptions in asp.net?
What is scope of an application variable in asp.net?
Where is asp.net session stored?