Forum: ASP.NET Sep 22nd, 2006 |
| Replies: 7 Views: 10,973 I was able to get this to work using the
System.Diagnostics.Process. I did this by:
string fileLocation = @"filename";
Process test = new Process();
test.StartInfo.FileName = fileLocation;... |
Forum: ASP.NET Sep 22nd, 2006 |
| Replies: 3 Views: 9,372 They are kind of the same. When you add .net you imply you are using the .net framework. The .net framework behaves similar to Java in which it compiles down to an IL and then gets interpreted by the... |
Forum: C++ Sep 21st, 2006 |
| Replies: 3 Views: 12,697 thank you for the help :) |
Forum: C# Sep 21st, 2006 |
| Replies: 2 Views: 2,313 it lookse like there is a response to the first part, I use the encryption classes as well in the .net framework, they work preaty well. As far as if sql express is needed to be installed they would... |
Forum: C# Sep 21st, 2006 |
| Replies: 2 Views: 7,671 After you upgrade your framework to the 2.0 make sure you go into the properties of the website in IIS and point the asp.net version to the 2.0. You can have 1.1 and 2.0 installed on the same machine... |
Forum: C++ Sep 21st, 2006 |
| Replies: 3 Views: 12,697 okay, I haven't had to do much development work in c++, I spend most of my time in c#. I am trying to finish a course and my teacher gave an assignment on dealing with union and bitfield structure.... |