You guys should check this out:
Sarcastic Wednesday
Hilarious. You will thank me later..
ASP.NET, AJAX, C#, Ruby on Rails, Web Technologies in general, and hopefully Agile Development.
Wednesday, March 28, 2007
C# and VB together?
I have an app in VS 2005 that contains both VB and C# code in the same website project. At compile time I kept getting this error:
"The files '/WebSite/App_Code/VB/test.vb' and '/WebSite/App_Code/CS/test.cs' use a different language, which is not allowed since they need to be compiled together."
To go around this issue, simply add the following to your web.config file under the compilation tag:
<codeSubDirectories>
<add directoryName="CS">
<add directoryName="VB">
In this case, all the VB files and C# files were already separated into different folders inside the App_Code Folder.
Hope this helps.
"The files '/WebSite/App_Code/VB/test.vb' and '/WebSite/App_Code/CS/test.cs' use a different language, which is not allowed since they need to be compiled together."
To go around this issue, simply add the following to your web.config file under the compilation tag:
<codeSubDirectories>
<add directoryName="CS">
<add directoryName="VB">
In this case, all the VB files and C# files were already separated into different folders inside the App_Code Folder.
Hope this helps.
Tuesday, March 27, 2007
A look at security vulnerabilities in web software
This is a must see video for any web developer. Mike Andrews, does an awesome job at explaining how web applications can be attacked, how common these security vulnerabilities are, and how to go about improving protection against them.
Click Here if video doesn't start
Click Here if video doesn't start
Getting Serious
Subscribe to:
Posts (Atom)