6
votes
17answers
1k views
Usage Statistics: C# versus VB.NET
When .NET was first introduced, it was common (and an obvious choice) for people coming from a VB6 background to jump into the .NET world with VB.NET rather than C#. Today, we use C# for over 90% o …
0
votes
C# ASP.NET 3.5 content-disposition file download problems
Have you tried setting the content-disposition to "attachment" rather than "inline"? I believe that the browser will then prompt the user to open or save the document.
Also, you can usually …
0
votes
vs.net xsd
I believe your best bet would be to run xsd.exe as a pre-build event, and setting the build action for your XSD to "None".
…
0
votes
Update more than one database using same ObjectDataSource using C#
I would say no; I don't think that's possible as a SqlCommand must be associated with exactly one connection string.
Since you're using an ObjectDataSource, why not write a "midde-tier" obj …
