TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Syed Muzakir
NA
45
2.7k
pass command line arguments from asp.net web application c#
Aug 14 2019 11:56 AM
i am trying to execute a .exe from asp.net web application. below is the code snippet.
Process p = new Process();
p.StartInfo.FileName = @"E:\ConsoleApp1\ConsoleApp1\bin\Debug\ConsoleApp1.exe";
p.StartInfo.Arguments = "'"+ con + "' '" + req + "' '" + DBName + "'";
p.Start();
but i am not getting expected result.
in the console application what will be the order of the args?
Reply
Answers (
3
)
How to get custom claims in asp.net core?
Error out parameter must be assigned before control leave cu