Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. ASP.NET
  4. how to run an exe in asp.net. Very Urgent!!!

how to run an exe in asp.net. Very Urgent!!!

Scheduled Pinned Locked Moved ASP.NET
csharpasp-nettutorial
3 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    SR Ranjini
    wrote on last edited by
    #1

    How to run an exe file in asp.net at run time. Reply immediately. Its very urgent. SR Ranjini

    J M 2 Replies Last reply
    0
    • S SR Ranjini

      How to run an exe file in asp.net at run time. Reply immediately. Its very urgent. SR Ranjini

      J Offline
      J Offline
      J5121982
      wrote on last edited by
      #2

      u cont run exe inside web browser' JAYARAJ -- modified at 5:47 Friday 31st March, 2006

      1 Reply Last reply
      0
      • S SR Ranjini

        How to run an exe file in asp.net at run time. Reply immediately. Its very urgent. SR Ranjini

        M Offline
        M Offline
        Manoj Tillu
        wrote on last edited by
        #3

        It quite possible to call exe from asp.net application. Use following code, using System.Diagnostics; Process p=null; try { p= new Process(); //p.StartInfo.FileName = "Exe path on server"; p.StartInfo.FileName = "c:\\HellowWorld.exe"; p.Start(); p.WaitForExit(); } catch (Exception ex) { Response.Write(ex); } There are other options with Process class which can be used to pass argument to exe etc. Happy Programming Manoj Tillu

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups