Re: How do I make my code jump back to a previous line? Programming by Dani Organizing code into functions is always important for readability and also to be able to reuse parts of your code as your app gets bigger. Thank you for posting your updated code to share with others :) Re: Cannot run exe from asp.net Programming Web Development by Neil_brown001 … completely blocked by web browsers unless: The user downloads and runs the .exe themselves. Or, you create a special browser plugin… page might not be properly linked to the logic that runs the .exe. If the button doesn’t even appear, it… Re: Cannot run exe from asp.net Programming Web Development by lennyli … by web browsers unless: > > The user downloads and runs the .exe themselves. > > Or, you create a special… page might not be properly linked to the logic that runs the .exe. > > If the button doesn’t even… Cannot run exe from asp.net Programming Web Development by lennyli … a button, when pressed, it will launch a webpage that runs a server side exe (eg, notepad.exe or ribbons.scr… Re: Cannot run exe from asp.net Programming Web Development by lennyli … to setup demo so that not only the remote execution runs, but i can at the same time, run a local… Re: Cannot run exe from asp.net Programming Web Development by Salem … a button, when pressed, it will launch a webpage that runs a server side exe (eg, notepad.exe or ribbons.scr… JForum release for JakartaEE 10 Hardware and Software Cloud-based Apps by Ulfson … in terms of functionality or bug fixes, but it now runs natively on JakartaEE 10 - meaning you need Tomcat 10.1… How do I make my code jump back to a previous line? Programming by trueriver … on looping. I'm using a while loop that only runs if my variable is 0. Right now, I set the… Re: Custom Media Server Hardware and Software Linux and Unix by Vince_6 I used Plex and a Mac for years to stream to my TV. When I switched to linux, PLex ran but couldn't find my media directories. I finally found a product called Emby. It has a server that runs and aps for many different divices. It even has one for my FireTV. Works great. Re: Create Infinite Loop In Bash Hardware and Software Linux and Unix by asadalikhan while true; do echo "Running..."; sleep 60; done This runs forever, printing "Running..." every 60 seconds. No script file needed, just drop it in the terminal and you're good. Re: 💻 What’s the First App You Install on a Fresh Windows Machine? Hardware and Software Microsoft Windows by Reverend Jim … relocate the user folders to D 3. OneDrive no longer runs My problems with OneDrive are numerous. The reason I put… Re: Coin Flip (Python Newbie) Programming Software Development by jassonadder … it was never initialized. Because of that, the loop never runs properly, and your counters don't change. Here's a… Re: Is linux your daily driver? Hardware and Software Linux and Unix by trcooke … that they get obsoleted by software long before the hardware runs out. My wife has a MacBook Air and it's… Re: Cannot run exe from asp.net Programming Web Development by pritaeas > while at the same time run the same exe on the local client pc. Not possible. Re: Cannot run exe from asp.net Programming Web Development by pritaeas No, Javascript cannot run/start executables on the client machine. Re: Cannot run exe from asp.net Programming Web Development by rproffitt I see pritaeas has answered so I'll move to the next stage of the discussion which is to ask what you need in your web site. For example there is an "online notepad" which does some basic notepad work. And there are many screensavers that run from a webpage with an example at whitescreen.online . You can get there. Re: Cannot run exe from asp.net Programming Web Development by lennyli Why does the following code dont run and launch the exe I specify (eg, notepad.exe, or ribbons.scr)? <%@ Language="VBScript" %> <!DOCTYPE html> <html> <Body> <% Dim objShell Dim command Dim result ' Path to the executable command = "C:\… Re: Cannot run exe from asp.net Programming Web Development by pritaeas Are you sure IIS is configured to allow running external scripts? Re: Cannot run exe from asp.net Programming Web Development by lennyli > Are you sure IIS is configured to allow running external scripts? The document folder and asp file has security permission set to ALL rights for 'everyone'. In IIS, under handler mappings for .asp files, under request restriction/access, script was chosen (not execute) for feature permissions, all 'read' 'script' 'execute' are chosen Re: Cannot run exe from asp.net Programming Web Development by john_111 Let me expand on what rproffitt said, by explaining why. If a webpage could run a program installed on another computer, the entire world wide web would be hacked into tiny pieces and cease to exist. No one would ever use the web, it would be so totally insecure. So web pages are prohibited from running programs on your computer. They can … Re: Cannot run exe from asp.net Programming Web Development by Reverend Jim >No, Javascript cannot run/start executables on the client machine. Technically correct but there are ways around it. For example, save a file in a special folder on the target computer, which has a folder watch on that folder. The watching task could then trigger a local task. Re: Cannot run exe from asp.net Programming Web Development by gediminas.bukauskas.7 Pritaeas answered the question: normal WEB security settings forbids launching executables on a client machine. The only legal workaround is to create windows service (daemon in Linux environment), install it on client machine and listen for some commands coming from server over WEB sockets. Re: Cannot run exe from asp.net Programming Web Development by lennyli > Pritaeas answered the question: normal WEB security settings forbids launching executables on a client machine. The only legal workaround is to create windows service (daemon in Linux environment), install it on client machine and listen for some commands coming from server over WEB sockets. Sure, I understand, but for my above new … Re: Cannot run exe from asp.net Programming Web Development by Salem > When I run the command "python server.py" on the server pc, it held for a second, then released back to the command prompt. So did it even give you `print("Waiting for a connection...")` ? Consider making your server main like this. if __name__ == "__main__": print('Server Begin') … Re: Cannot run exe from asp.net Programming Web Development by lennyli > > When I run the command "python server.py" on the server pc, it held for a second, then released back to the command prompt. > > So did it even give you `print("Waiting for a connection...")` ? > > Consider making your server main like this. > > if __name__ == "__main__": >… Re: Cannot run exe from asp.net Programming Web Development by lennyli I fixed the problem by ensuring the path is including python. Also on the server I must run pip install Thank you all All working now Re: Cannot run exe from asp.net Programming Web Development by Salem Congrats on getting going. > Even if i run the setup and ticked the option "add to path", the echo %PATH% command didnt seem to show what i expected. Yeah, this won't transform the PATH of any existing process. In increasing annoyance order, you may have to: 1. Start a new cmd window 2. Log out and log in again 3. Reboot … Re: Cannot run exe from asp.net Programming Web Development by Dani Marking this question as solved. Thanks all! Re: JForum release for JakartaEE 10 Hardware and Software Cloud-based Apps by Dani Congrats on the latest release of your software. May I ask what inspired the decision to host the project on Sourceforge instead of GitHub? I rarely see well-maintained projects on sourceforge these days, sadly. Re: JForum release for JakartaEE 10 Hardware and Software Cloud-based Apps by Ulfson > May I ask what inspired the decision to host the project on Sourceforge instead of GitHub? I rarely see well-maintained projects on sourceforge these days, sadly. JForum had already lived on SF for several years before I became involved. At this point there are just 2 committers, and while we talked about moving to Git, it never seemed …