How Are You Approaching SEO in 2024? Strategies That Actually Work? Digital Media Digital Marketing by Ramesh sharama I’ve been working in web design and development for a while now, and over time … search intent than just keyword volume Keeping technical SEO solid (site speed, structure, crawlability) Writing content that’s actually helpful—not… Re: Cannot run exe from asp.net Programming Web Development by Neil_brown001 … client (user’s computer) This is completely blocked by web browsers unless: The user downloads and runs the .exe …inside the right page layout. About the web.config confusion Having two web.config files is normal in ASP.NET … is different When you run your site in Visual Studio, it uses a development web server (Kestrel or IIS Express), … Re: Cannot run exe from asp.net Programming Web Development by lennyli … client (user’s computer) > This is completely blocked by web browsers unless: > > The user downloads and runs the…; If IIS doesn’t seem to match what’s in web.config, it could be due to caching or differences in… is different > When you run your site in Visual Studio, it uses a development web server (Kestrel or IIS Express), which… 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 … machine and listen for some commands coming from server over WEB sockets. Sure, I understand, but for my above new program… it has nothing to do with web. It is just a python script but it still doesnt… 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 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 lennyli … discussion which is to ask what you need in your web site. > > For example there is an "online notepad… can be seen as a notebook computer that has a web server installed. It is connected only to a wifi router… thought is maybe to demonstrate that i can use my web browser to connect to the webpage http://192.168.0… 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. Cannot run exe from asp.net Programming Web Development by lennyli I have tried to read https://www.daniweb.com/programming/web-development/threads/386380/cannot-run-exe-files-in-asp-…files, and the IIS interface didnt seem to match the web.config settings, and also i dont understand why the …visual studio code will launch the site with a certain port number, while your previous discussion 13… Re: Cannot run exe from asp.net Programming Web Development by john_111 … 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…. Or a javascript to alter the web page if you interact with it. Or the web page can let you download and… Re: which language do i start leaning in 2025 Programming Software Development by Dani … topic c++. C++ is a popular language used for non-web related applications such as many games. Is that something that… Re: The Impact of User Research on UX Design Digital Media UI / UX Design by john_111 …page, several days later? This was a site someone paid good money for to put an…design matters? Several years later I visited a site with links styled in 10 or 12 different…pages or large version of images. A site I worked on when the original designer …had quit after arguing with the site owner. He used grey text on a bluish… 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 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 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 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: dating site layout Digital Media UI / UX Design by anryha Hello, everyone! I'm thinking of signing up for a dating site, but I'm afraid of wasting my time. Does anyone have a positive experience? Re: Key Tools and Tips for Efficient Web Development Programming Web Development by simplixi The world of web development is vast, but with these tools and tips, you'…’s going wrong when something isn’t working on your site. **Productivity Tips** * Extensions & Plugins: Little helpers for your code… Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Dani … until it is about to come into view in the web browser as the user scrolls down the page. Something else… can't do everything within your power to make your site load as fast as possible, then focus on the user… Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Dani … world performance data from Chrome users that factors into a site's SEO. This real world data can be found in… the Core Web Vitals section of Google Search Console. Unfortunately, your theory doesn… Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Dani … answers. Something else I forgot to mention is that a site like DaniWeb has complicated ads that are different each time… a product page that Google has cached it (in a web app that uses SXG) with a different price or / and… Re: How would we poison AI web crawls? Hardware and Software Information Security by Dani …created equally. > In my meagre understanding of all things web related, robots.txt is supposed to specify which pages of…your robots.txt file, which dictates which part of your site the specific bot is allowed to crawl, as well … by spewing garbage across the web. > As such, any action taken against them by site owners is, in my mind… Re: How would we poison AI web crawls? Hardware and Software Information Security by Reverend Jim … developed Iocaine found that 94% of the traffic to his site was caused by bots. When you price and design a… against the bots. In my meagre understanding of all things web related, robots.txt is supposed to specify which pages of… this file. As such, any action taken against them by site owners is, in my mind, justified, including poisoning the data…