Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
~3K People Reached
Favorite Tags

5 Posted Topics

Member Avatar for idthiru

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 framework. ASP.net is the web piece of the .net framework. That …

Member Avatar for sathishvv
0
693
Member Avatar for mikefitz

I was able to get this to work using the System.Diagnostics.Process. I did this by: [COLOR=#0000ff]string[/COLOR] fileLocation = [COLOR=#800000]@"filename"[/COLOR]; [COLOR=#008080]Process[/COLOR] test = [COLOR=#0000ff]new[/COLOR] [COLOR=#008080]Process[/COLOR](); test.StartInfo.FileName = fileLocation; test.Start();

Member Avatar for tcornejo
0
891
Member Avatar for leonpwhirl

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. The assignment is: [COLOR=#000000]Write a C++ program that reads a 64-bit …

Member Avatar for leonpwhirl
1
771
Member Avatar for Kelba

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 not, they would just need the file the data is stored …

Member Avatar for leonpwhirl
0
93
Member Avatar for tke999

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 and if you are upgrading the code but not the asp.net …

Member Avatar for leonpwhirl
0
158

The End.