Click here to Skip to main content
15,917,061 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionHow to expire a Session if we click Browser Back Button Pin
kaushik4908-May-07 1:12
kaushik4908-May-07 1:12 
AnswerRe: How to expire a Session if we click Browser Back Button Pin
Sandeep Akhare8-May-07 1:53
Sandeep Akhare8-May-07 1:53 
GeneralRe: How to expire a Session if we click Browser Back Button Pin
kaushik4908-May-07 2:51
kaushik4908-May-07 2:51 
AnswerRe: How to expire a Session if we click Browser Back Button Pin
Chris Maunder8-May-07 9:25
cofounderChris Maunder8-May-07 9:25 
Generalwe dint solve it Pin
rama charan8-May-07 20:29
rama charan8-May-07 20:29 
QuestionGridview with template controls Pin
regin8-May-07 0:51
regin8-May-07 0:51 
Answer[Message Deleted] Pin
haneef18-May-07 1:12
haneef18-May-07 1:12 
GeneralRe: Gridview with template controls Pin
Chetan Ranpariya8-May-07 1:27
Chetan Ranpariya8-May-07 1:27 
GeneralRe: Gridview with template controls Pin
_mubashir8-May-07 1:29
_mubashir8-May-07 1:29 
GeneralRe: Gridview with template controls Pin
Colin Angus Mackay8-May-07 2:30
Colin Angus Mackay8-May-07 2:30 
AnswerRe: Gridview with template controls Pin
Chetan Ranpariya8-May-07 1:32
Chetan Ranpariya8-May-07 1:32 
QuestionIssues in loading images in Word Automation Pin
Sankara Narayana8-May-07 0:34
Sankara Narayana8-May-07 0:34 
QuestionExecute exe Pin
Rickey_Me7-May-07 23:57
Rickey_Me7-May-07 23:57 
AnswerRe: Execute exe Pin
Colin Angus Mackay8-May-07 0:15
Colin Angus Mackay8-May-07 0:15 
AnswerRe: Execute exe Pin
Rickey_Me8-May-07 1:36
Rickey_Me8-May-07 1:36 
GeneralRe: Execute exe Pin
_mubashir8-May-07 2:00
_mubashir8-May-07 2:00 
OK...
you can set input parameters using 'Arguments' property located in ProcessInfo.
e.g,
<br />
Dim pinfo As New System.Diagnostics.ProcessStartInfo<br />
pinfo.Arguments = "myagr1 myarg2 myarg3"<br />
pinfo.FileName = "C:\MyExe.exe"<br />


Now to read the output from the exe, you need to set

pinfo.RedirectStandardOutput = True

And read the output as follow,


<br />
Dim p As System.Diagnostics.Process<br />
p = p.Start(pinfo)<br />
p.WaitForWxit()<br />
Dim str as string = p.StandardOutput.ReadToEnd<br />


Hope it helps



Mubashir
Software Architect
Storan Technologies Inc, USA
Every job is a self portrait of the person who did it.

GeneralRe: Execute exe Pin
Sandeep Akhare8-May-07 2:16
Sandeep Akhare8-May-07 2:16 
GeneralRe: Execute exe Pin
Rickey_Me8-May-07 3:16
Rickey_Me8-May-07 3:16 
QuestionHow to Add Node in DataSet Pin
VenkataRamana.Gali7-May-07 23:43
VenkataRamana.Gali7-May-07 23:43 
GeneralRe: How to Add Node in DataSet Pin
VenkataRamana.Gali8-May-07 1:44
VenkataRamana.Gali8-May-07 1:44 
GeneralRe: How to Add Node in DataSet Pin
Colin Angus Mackay8-May-07 2:29
Colin Angus Mackay8-May-07 2:29 
Questionregarding compression Pin
reynardza7-May-07 23:38
reynardza7-May-07 23:38 
GeneralRe: regarding compression Pin
Chetan Ranpariya8-May-07 1:34
Chetan Ranpariya8-May-07 1:34 
GeneralRe: regarding compression Pin
Colin Angus Mackay8-May-07 2:28
Colin Angus Mackay8-May-07 2:28 
QuestionGridview column width Pin
Christer Claesson7-May-07 22:49
Christer Claesson7-May-07 22:49 

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.