1
Answer

how can I post the data onto the server ?

Administrator

Administrator

22y
1.7k
1
Iam working on a c# code which actually opens a tif file and reads the file with a stream reader which is then stored in a string. Now I need to post this string data onto another server How do I communicate with the other server and post the data onto that? Please let me know thanks,
Answers (1)
0
Rahul Singh

Rahul Singh

NA 1.5k 226k 10y
Hi Pitchaiyan, You can use Process class methods for this purpose, check this link on MSDN.

You can do something like this on a button click or whatever event you want to bind:-

Process p = new Process();
p.StartInfo.FileName = "Yourfile.exe";
p.StartInfo.Arguments = String.Format(-- Your params--);
p.Start();