Re: Cannot run exe from asp.net Programming Web Development by lennyli ….0.2. I inputed the server IP into the sample code. I turned off all firewalls and installed python on both… Re: Any jQuery 4 users? Programming Web Development by Dani …. It just might take a whole bunch more lines of code in native JS. So that’s the allure of jQuery… 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: Any jQuery 4 users? Programming Web Development by jkon … whether to remove jQuery arises with every major client-side code upgrade. However, because other plugins rely on it and we… Re: Cannot run exe from asp.net Programming Web Development by Neil_brown001 Why your approach isn’t working What you're trying to do is mostly blocked by modern security rules — for good reasons. Here's the breakdown: Running a .exe on the server You can technically make the server launch an .exe file like Notepad, but: It will run in the background on the server, not visibly on the desktop. It needs special … Null Pointer Exception in Java Application – Need Fixing Programming Software Development by YashSmith … trying to access an object property. Here's the problematic code: public class Test { public static void main(String[] args) { String… Segmentation Fault in C++ Program – Need Debugging Programming Software Development by YashSmith … when trying to access an array element. Here’s my code: #include <iostream> using namespace std; int main() { int… Re: Segmentation Fault in C++ Program – Need Debugging Programming Software Development by rproffitt Thanks for the MVE (minimum viable example). But it's just bad code. c, c++ and a lot of language won't stop you from going out of bounds. What are some underrated React JS best practices? Programming Software Development by James_228 … Components or Signals yet? Share your tips, tools, or even code snippets. Let’s build a solid thread of modern React… Handling Real-Time DOM Sync in SSR React App with Dynamic Nested Routes Programming Web Development by Neil_brown001 …—especially when the component tree changes due to route-based code-splitting, and some child components rely on shared context/state… Cannot run exe from asp.net Programming Web Development by lennyli … settings, and also i dont understand why the visual studio code will launch the site with a certain port number, while… 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.… Re: Buggy career talk :-P Programming by Reverend Jim …bug was one I introduced myself. While making a miniscule code change I decided to improve the readability of the following… line by inserting a space. In today's code that would not be a problem, however, most of our…the sequence area it was ignored by the compiler. The code still compiled, but now all the parameters following that were… Re: What are some top-rated Bootstrap admin templates that not rely on Tailwind Programming Web Development by Dani … experience do you have? Are you experienced with creating HTML code that uses css classes to piece together something unique? Bootstrap… Re: Looking for an developer-Friendly Admin Template Programming Web Development by Pelorus_1 Consider admin templates with clean code, easy customization, and robust documentation if you're looking for developer-friendly templates. Save time and increase productivity by using templates with modular components and built-in UI elements. Re: How secure is Github? Programming Software Development by Salem TBH, if it's "just me", then password protected tarballs of your `.git` directory, uploaded to one of the more trustworthy sites might be an option. I wouldn't touch google/onedrive with a barge-pole. Dropbox maybe at a pinch. Personally, I use https://mega.io/ If your DW hosting provider gives you access to filespace outside of the… Re: How secure is Github? Programming Software Development by pritaeas https://www.theregister.com/2025/03/17/supply_chain_attack_github/ Re: How secure is Github? Programming Software Development by Dani > https://www.theregister.com/2025/03/17/supply_chain_attack_github/ Well that’s coincidental. Doesn’t seem to apply to our repo though because we don’t use tj-actions/changed-files and use private repos. More to say when I’m not on my phone. Re: Segmentation Fault in C++ Program – Need Debugging Programming Software Development by Reverend Jim Don't try to access past the end of the array. Re: Segmentation Fault in C++ Program – Need Debugging Programming Software Development by Dani You’re creating an array of 5 integers and then trying to access the 11th integer in the array (assuming the indexes start at 0). You’re getting an out of bounds error because you’re trying to access an array element that doesn’t exist. You can access arr[0] up through arr[4]. Re: Segmentation Fault in C++ Program – Need Debugging Programming Software Development by Salem It should be obvious by now from their posting history that the OP is a troll. 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: How to open an Excel Document in VB.NET Programming Software Development by JamesMichaelm I see it's been a while since you posted, but I'm curious if anyone here has tried using the Open XML SDK instead of Interop or OleDb for reading Excel files. I found it faster and doesn't require Excel to be installed, though it can be more complex for writing. Wondering how others handle big Excel files or ones with tricky formatting? Re: How to open an Excel Document in VB.NET Programming Software Development by PitSterw I've worked on something similar and found that using Microsoft.Office.Interop.Excel lets you open the file and loop through cells easily. 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 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 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: How to open an Excel Document in VB.NET Programming Software Development by Pelorus_1 A Microsoft Excel document can be opened in VB.NET using the Microsoft.Office.Interop.Excel library. Using Workbooks.Open(), open the workbook, and then display the Excel window. Reference the Excel COM object in your project.