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
What is the Intermittent crashing of application in production?
What is HTTPModule and HTTPcontext? What is the use of each?
Is it possible for me to change my aspx file extension to some other name?
What is a SESSION and APPLICATION object?
What is s2s tracking?
Explain what are webservices?
What are the different types of Caching techniques in ASP.NET?
What is bson in web api?
How to prevent client side validation from the ASP.NET validation controls?
What is clickid?
What is cache in asp net?
Define static member?
Define xmlreader class.
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?
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.