How to send URL from Infopath to the browser
-----------------------------------------------
System.Diagnostics.Process process = new System.Diagnostics.Process();
process.StartInfo.UseShellExecute = true;
process.StartInfo.FileName = "your custom url";
process.Start();
No comments:
Post a Comment