Re: Digital Marketing Strategy for My Website Digital Media by Salem https://en.wikipedia.org/wiki/Health_Insurance_Portability_and_Accountability_Act Or the equivalent for your jurisdiction. It doesn't matter how glossy your website is, if you f-up the basic security, you won't have any customers to worry about. Re: Cannot run exe from asp.net Programming Web Development by lennyli … you're trying to do is mostly blocked by modern security rules — for good reasons. Here's the breakdown: &… on someone’s computer directly — it’s a huge security risk. > > Why your webpage button might…of another computer involves several technical aspects, including networking, security, and user interface design. Below, I’ll outline a… 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 … 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 Neil_brown001 … you're trying to do is mostly blocked by modern security rules — for good reasons. Here's the breakdown: Running a… apps on someone’s computer directly — it’s a huge security risk. Why your webpage button might not be working The… Cannot run exe from asp.net Programming Web Development by lennyli … did not run even when i set it to have security permissions so let everyone have all rights. im a little… 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 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 > 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 … 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 Salem https://xyproblem.info/ * User wants to do X. Sometime later... > My boss just asked me to create a prototype as proof of concept. There is no specific language/tool I must use * User asks for help with Y. Initially asked... > Have a webpage with a button, when pressed, it will launch a webpage that runs a server side exe (eg, … 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: how much does Stable Token Development cost? Programming Software Development by Suheb The stable token development cost ranges from $10,000 to $150,000+, depending on factors like blockchain platform, smart contract complexity, and compliance needs. A basic stablecoin costs around $10K-$30K, while an enterprise-grade token with auditing and security features can exceed $60K-$150K. Re: Text Classification and Summarization with DeepSeek R1 Distill Llama 70B Programming Computer Science by rproffitt … Research Uncovers Exposed DeepSeek Database Leaking Sensitive Information" "Security researchers tested 50 well-known jailbreaks against DeepSeek’s popular… Re: how much does Stable Token Development cost? Programming Software Development by wootingdouble The cost of Stable Token Development varies based on factors like blockchain selection, security features, compliance requirements, and customization. Consulting with a development team can give a more precise estimate. Re: How I get big data for statistical analysis of my pre seed pitch deck Digital Media UI / UX Design by rproffitt … USA. Our government has enabled DOGE to break through any security there was at multiple agencies. This just in: "February… Re: Contact form does not working Programming Web Development by gediminas.bukauskas.7 WEB security now rejects mail sent from any computer. Select some mail provider and send mail using it. Using certificated WEB serve is an another solution. Obtain legal certificate, register it on WEB server (IIS, Apache, NGINX, ...) Re: How does Microsoft defender operate? Hardware and Software Information Security by Heatman The same way AVAST works is the same way Microsoft Windows Defender works. It's the main security guard that protects your system against any foreign attacks especially against virus. It's what I've always been using for my laptop. Re: How secure is Github? Programming Software Development by rproffitt Given the state of affairs in the USA, any security we thought we had is gone. DOGE is gaining access by force now. Do we really need this conversation? Re: How do I establish an open connection to an open web browser in C#? Programming Software Development by pathofbuilding To attach Selenium to an already open Chrome browser in C#, launch Chrome manually with debugging enabled using chrome.exe --remote-debugging-port=9222 --user-data-dir="C:\SeleniumChromeProfile", then use ChromeOptions options = new ChromeOptions(); options.DebuggerAddress = "localhost:9222"; IWebDriver driver = new ChromeDriver… Re: How do I establish an open connection to an open web browser in C#? Programming Software Development by xivlauncher You can also use SHDocVw or System.Diagnostics name spaces from C# to interact with an open web browser, or connect programmatically to an existing browser window using the UI Automation API. Of course, for deeper control over Chrome, you may need the Chrome DevTools Protocol. Re: What is the best possible way to protect my website? Hardware and Software Information Security by Heatman Adding to what other people have said, it's also very important to back up your data from time to time in case anything happens. You will still have access to your data. Please back up manually if possible.