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


Please Help Members By Posting Answers For Below Questions

What is the Intermittent crashing of application in production?

752


What is HTTPModule and HTTPcontext? What is the use of each?

2188


Is it possible for me to change my aspx file extension to some other name?

769


What is a SESSION and APPLICATION object?

757


What is s2s tracking?

723


Explain what are webservices?

717


What are the different types of Caching techniques in ASP.NET?

755


What is bson in web api?

793


How to prevent client side validation from the ASP.NET validation controls?

765


What is clickid?

742


What is cache in asp net?

720


Define static member?

732


Define xmlreader class.

739


I have created a configuration setting in my web.config and have kept it at the root level. How do I prevent it from being overridden by another web.config that appears lower in the hierarchy?

731


How can we secure the data which is send from client side to server? Like the login id and paasword needs to be authenticated on the server but we cannot send it in plain text into the server.One more thing we are not using the SSL here.

1685