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
Describe the difference between inline and code behind - which is best in a?
How do I use response redirect?
Name the two properties are on every validation control?
What are the security types in ASP/ASP.NET? Different Authentication modes?
What is the maximum timeout we can set for Cookies?
How does exception management works in ASP.NET?
How can I have a particular web page in an asp.net application which displays its own error page?
How can we apply themes to an asp.net application?
Explain why datareader is useful?
Can you explain the importance of finalize method in .net?
how to debug web services on consumer side?
What is viewstate in asp net with example?
Explain the difference between singleton and single call?
Describe how ASP.NET maintains process isolation for each Web application?
Is a dll file an executable?