Click here to Skip to main content
15,921,226 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: need help with the create user wizard Pin
Sherin Iranimose16-May-07 17:47
Sherin Iranimose16-May-07 17:47 
Questionsmtp mail setting pls help Pin
neodeaths16-May-07 16:20
neodeaths16-May-07 16:20 
AnswerRe: smtp mail setting pls help Pin
Sathesh Sakthivel16-May-07 18:17
Sathesh Sakthivel16-May-07 18:17 
Questionlink and edit to a document in a webfolder? Pin
rodrigoss16-May-07 15:53
rodrigoss16-May-07 15:53 
QuestionUsing a session from a dataview? Pin
rudemusik16-May-07 15:30
rudemusik16-May-07 15:30 
AnswerRe: Using a session from a dataview? Pin
rudemusik16-May-07 15:42
rudemusik16-May-07 15:42 
Questionneed help wit my testing on my wwwroot Pin
neodeaths16-May-07 15:02
neodeaths16-May-07 15:02 
AnswerRe: need help wit my testing on my wwwroot Pin
Sherin Iranimose16-May-07 17:56
Sherin Iranimose16-May-07 17:56 
GeneralRe: need help wit my testing on my wwwroot Pin
neodeaths16-May-07 18:46
neodeaths16-May-07 18:46 
QuestionWhy Googlebot 500 errors Pin
remex_1980_junyongwu16-May-07 14:14
remex_1980_junyongwu16-May-07 14:14 
AnswerRe: Why Googlebot 500 errors Pin
N a v a n e e t h16-May-07 18:03
N a v a n e e t h16-May-07 18:03 
GeneralRe: Why Googlebot 500 errors Pin
remex_1980_junyongwu17-May-07 0:04
remex_1980_junyongwu17-May-07 0:04 
AnswerCan't know reason yet, here is the code for URL rewrite Pin
remex_1980_junyongwu17-May-07 1:22
remex_1980_junyongwu17-May-07 1:22 
QuestionCustom Controls - changing properties Pin
mrJuanito16-May-07 9:44
mrJuanito16-May-07 9:44 
QuestionAuthentication timeout -- frames issue. Pin
Greg Daye16-May-07 9:30
Greg Daye16-May-07 9:30 
QuestionASP.Net Menu Control - How to make entire menu item clickable? Pin
martin_hughes16-May-07 7:22
martin_hughes16-May-07 7:22 
AnswerRe: ASP.Net Menu Control - How to make entire menu item clickable? Pin
Not Active16-May-07 7:48
mentorNot Active16-May-07 7:48 
AnswerRe: ASP.Net Menu Control - How to make entire menu item clickable? Pin
Uwe Keim16-May-07 8:31
sitebuilderUwe Keim16-May-07 8:31 
AnswerRe: ASP.Net Menu Control - How to make entire menu item clickable? Pin
martin_hughes16-May-07 9:26
martin_hughes16-May-07 9:26 
QuestionRunAs Question Pin
amgray78916-May-07 7:21
amgray78916-May-07 7:21 
I'm not sure if this is the correct forum for this question, but I'll give it a try.

I want to execute a DOS application from a ASP.NET webservice (code snippet below). The issue that I am having is that when the process is started, the "cmd" is running as "User1" and "DOSApp" is running as "ASPNET". The "DOSApp" cannot access the machines networked resources using the "ASPNET" user. Is there a way to change the user under which this "child" process is running?
<br />
        Dim StartInfo As New ProcessStartInfo<br />
        StartInfo.FileName = "c:\DOSApp.exe"<br />
        StartInfo.Arguments = "-a arg"<br />
<br />
        StartInfo.RedirectStandardError = True<br />
        StartInfo.RedirectStandardOutput = True<br />
        StartInfo.UseShellExecute = False<br />
        StartInfo.Verb = "runas /noprofile /user:MyMachine\User1"<br />
<br />
        Dim proc As System.Diagnostics.Process = System.Diagnostics.Process.Start(StartInfo)<br />

AnswerRe: RunAs Question Pin
Not Active16-May-07 8:02
mentorNot Active16-May-07 8:02 
AnswerRe: RunAs Question Pin
kubben16-May-07 8:03
kubben16-May-07 8:03 
GeneralRe: RunAs Question Pin
amgray78916-May-07 8:15
amgray78916-May-07 8:15 
GeneralRe: RunAs Question Pin
kubben16-May-07 9:06
kubben16-May-07 9:06 
AnswerRe: RunAs Question Pin
SABhatti16-May-07 8:10
SABhatti16-May-07 8:10 

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.