I have a website that has a linkbutton that opens a game :
Process game= new Process();
game.StartInfo.FileName = HttpContext.Current.Request.MapPath("~/iFarkle.exe");
game.StartInfo.UserName = Session["Username"].ToString();
game.StartInfo.UseShellExecute = false;
game.Start();
How do I use the StartInfo.UserName? (it doesn't work right now, it stays I entered bad data)(works without the StartInfo.UserName