Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8996907
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T23:49:02+00:00 2026-06-15T23:49:02+00:00

I have a compiled C++ program called main. Instead of running the program from

  • 0

I have a compiled C++ program called “main”.
Instead of running the program from a terminal, I would like to click a button on a webpage to run it.
How would I go about doing this?


In this example, the browser downloads the program instead of running it.

<!DOCTYPE html>
<head>
    <meta charset="utf-8">
    <title>title</title>
</head>
<body>
    <form name="input" action="main" method="post">
        <input type="submit" value="Run Program">
    </form>
</body>
</html>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T23:49:02+00:00Added an answer on June 15, 2026 at 11:49 pm

    There is no way to do this without a web server running locally. Starting programs directly by clicking on web pages would lead to serious security problems.

    If you are on Windows, and really want to start executables from HTML pages, then consider using an HTA (example).

    == EDIT ==

    I just realized that the example I mentioned above shows a way to start a program (notepad.exe) directly from the browser. Save this code as test.html, open it in Internet Explorer, and click on the button:

    <html> 
    <head> 
    <script language="VBScript"> 
        Sub RunProgram 
            Set objShell = CreateObject("Wscript.Shell")
            objShell.Run "notepad.exe"
        End Sub
    </script> 
    </head> 
    <body> 
    <button onclick="RunProgram">Run Program</button> <p>
    </body> 
    </html>
    

    You will get a warning, but after clicking on “Yes”, Notepad will start.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a very simple print program called print.c: #include <stdio.h> int main(void){ printf(Random
I have compiled an Ada program on Ubuntu using GNAT. Afterwards, I tried a
I have a C program with embedded python code. I have compiled python 2.7.2
I have a very basic program in C++ compiled in VS 11 Beta on
I have my program written in C++ and it is can be successfully compiled
I have a program written in C++, on Linux, compiled with -g. When I
I have a simple program called demo.c which allocates space for a char array
I wrote a very small program called cow.c. When I try to run it
I have a program where code in C, C++ and Fortran has been compiled
I have a program called test.c, and an input file called test.in. I'm trying

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.