Click here to Skip to main content
15,887,836 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: implement Captcha in asp.net Pin
Christian Graus25-Sep-09 23:23
protectorChristian Graus25-Sep-09 23:23 
AnswerRe: implement Captcha in asp.net Pin
Richard MacCutchan25-Sep-09 23:32
mveRichard MacCutchan25-Sep-09 23:32 
AnswerRe: implement Captcha in asp.net Pin
Abhijit Jana26-Sep-09 4:00
professionalAbhijit Jana26-Sep-09 4:00 
QuestionDisable all content when opening div Pin
pujafaldu25-Sep-09 22:20
pujafaldu25-Sep-09 22:20 
AnswerRe: Disable all content when opening div Pin
Christian Graus25-Sep-09 22:30
protectorChristian Graus25-Sep-09 22:30 
Questionexe problem Pin
naveen attri25-Sep-09 22:03
naveen attri25-Sep-09 22:03 
AnswerRe: exe problem Pin
Christian Graus25-Sep-09 22:14
protectorChristian Graus25-Sep-09 22:14 
GeneralRe: exe problem Pin
naveen attri25-Sep-09 22:20
naveen attri25-Sep-09 22:20 
res = new RemoteExecuteServer();
res.opt = "^^" + mProjectName + "^^" + mGraphName;
res.serverPath = Server.MapPath("APAMonitor_CL.exe");
res.Run();
now we run new thread like

public class RemoteExecuteServer : MarshalByRefObject
{
Process myProcess;
public String opt, serverPath, PID;
public void Run()
{
myProcess = new Process();
//ProcessStartInfo info = new ProcessStartInfo(path);
myProcess.StartInfo.FileName = serverPath;
myProcess.StartInfo.Arguments = opt;
myProcess.StartInfo.RedirectStandardInput = false;
myProcess.StartInfo.RedirectStandardOutput = true;
myProcess.StartInfo.WorkingDirectory = serverPath.Replace("APAMonitor_CL.exe", "");
myProcess.StartInfo.CreateNoWindow = true;
myProcess.StartInfo.UseShellExecute = false;
myProcess.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
myProcess.Start();
PID = Convert.ToString(myProcess.Id);

myProcess.WaitForExit();
}
public void ClosePro()
{
myProcess.Close();
}
}


the same thing is working on localhost but not working on clientside
is there any authentication problem on client side.......
GeneralRe: exe problem Pin
Christian Graus25-Sep-09 22:28
protectorChristian Graus25-Sep-09 22:28 
GeneralRe: exe problem Pin
naveen attri25-Sep-09 23:16
naveen attri25-Sep-09 23:16 
GeneralRe: exe problem Pin
Christian Graus25-Sep-09 23:22
protectorChristian Graus25-Sep-09 23:22 
GeneralRe: exe problem Pin
naveen attri25-Sep-09 23:25
naveen attri25-Sep-09 23:25 
GeneralRe: exe problem Pin
Christian Graus25-Sep-09 23:51
protectorChristian Graus25-Sep-09 23:51 
GeneralRe: exe problem Pin
naveen attri25-Sep-09 23:58
naveen attri25-Sep-09 23:58 
GeneralRe: exe problem Pin
Christian Graus26-Sep-09 0:03
protectorChristian Graus26-Sep-09 0:03 
GeneralRe: exe problem Pin
naveen attri26-Sep-09 0:04
naveen attri26-Sep-09 0:04 
GeneralRe: exe problem Pin
Christian Graus25-Sep-09 22:50
protectorChristian Graus25-Sep-09 22:50 
QuestionProblem with querystring or what !help me Pin
OmiAshish25-Sep-09 21:04
OmiAshish25-Sep-09 21:04 
AnswerRe: Problem with querystring or what !help me Pin
Abhishek Sur26-Sep-09 6:27
professionalAbhishek Sur26-Sep-09 6:27 
GeneralRe: Problem with querystring or what !help me Pin
OmiAshish27-Sep-09 18:25
OmiAshish27-Sep-09 18:25 
GeneralRe: Problem with querystring or what !help me Pin
Abhishek Sur28-Sep-09 6:17
professionalAbhishek Sur28-Sep-09 6:17 
QuestionHow to Start ASP.Net Pin
Anubhava Dimri25-Sep-09 20:10
Anubhava Dimri25-Sep-09 20:10 
AnswerRe: How to Start ASP.Net Pin
nagendrathecoder25-Sep-09 20:14
nagendrathecoder25-Sep-09 20:14 
AnswerRe: How to Start ASP.Net Pin
Abhijit Jana26-Sep-09 5:52
professionalAbhijit Jana26-Sep-09 5:52 
QuestionData fetch and show in runtime [modified] Pin
rummer25-Sep-09 18:56
rummer25-Sep-09 18:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.