 |
Could not write to output file ... The directory name is invalid
Paul Hayman (5936 views)
Could not write to output file ... The directory name is invalid
Recently had a problem deploying an app to a fresh 2003 server. Basically, the application wouldn't start, instead we recieved an error stating that the compiler couldn't write to the '''"Temporary ASP.NET Files"''' folder because
|
 |
Extending Strongly Typed Datasets
Dave Howard (3164 views)
Extending Strongly Typed Datasets
Strongly Typed Datasets are a rather nice addition to VS2005 (they don't lend themselves well to acronyms however)
You still need to create a database and tables and realationships but using STDs saves a writing huge amount of code.
If this code were gene
|
 |
Evaluating Expressions
Paul Hayman (2433 views)
Evaluating Expressions
You can evaluate sums in the fly using .net DataTables.
This is how you do it (C# 2005).
#c#string sum = "(1+2)/4";
#c#System.Data.DataTable evaluator = new System.Data.DataTable("temp");
#c#double result;
#c#
#c#result = (double)evaluator.Compute(sum, null);
|
 |
Getting on the Vista developers merry-go-round
Mark Page (1454 views)
Getting on the Vista developers merry-go-round
Trying to keep up with the various Vista Beta releases? Want to develop but not sure which version will work on your platform?
Here's a useful set of links to make sure you get the right version of the runtime, SDK, Orcas VS extensions and WCF l
|