Re: Fujitsu Windows Server 2019 Servers Rebooting at 11pm every day Hardware and Software Microsoft Windows by Dani …'s because my career is in web development, and the web, and the technologies that power the web, have changed *a lot* over the… Re: Key Tools and Tips for Efficient Web Development Programming Web Development by JackRyan248 > Hi Everyone, > > Web development can be both exciting and challenging, but having the … popular frameworks like React or Vue for streamlined front-end development. > > On the back end, Node.js and…debugging. What are your go-to resources and tools for web development? Feel free to share tips and tricks that improve … Re: What should I look for in a reliable web design and development agency? Digital Media Digital Marketing by asadalig Must have good track record of the previous projects. Timely submission or completion of the projects. Make sure have expertise in specific domain. and many more things to consider. Re: Key Tools and Tips for Efficient Web Development Programming Web Development by Himanshu011 Frontend development: * React * Vue.js Backend development: * Node.js * Django Hello Everyone - Newbie Here Community Center Say Hello! by Ramesh sharama … part of this community! I work in the areas of web development, website design, and digital marketing, and I’m always keen… 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-net-application…all rights. im a little confused why there were 2 web.config files, and the IIS interface didnt seem to …match the web.config settings, and also i dont understand why the visual… Re: What should I look for in a reliable web design and development agency? Digital Media Digital Marketing by sasha_Digitable … to date portfolio 2. Expertise in the specific areas of web design you are wanting to use 3. The ability of… 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 …you run your site in Visual Studio, it uses a development web server (Kestrel or IIS Express), which picks a random… 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… you run your site in Visual Studio, it uses a development web server (Kestrel or IIS Express), which picks a random port… 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: 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… 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 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 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. 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 I’ve realized … Re: Hello Everyone - Newbie Here Community Center Say Hello! by Reverend Jim Welcome to Daniweb. Please take a moment to read the [Daniweb Posting Rules](https://www.daniweb.com/welcome/rules). What should I look for in a reliable web design and development agency? Digital Media Digital Marketing by Viacon_ 1. Strategic Thinking 2. Full Service Capabilities 3. Strong Portfolio & Case Studies 4. Custom Solution 5. Transparent Communication & Timelines 6. Future Readiness Re: What should I look for in a reliable web design and development agency? Digital Media Digital Marketing by Manyhatsnc The best agency will have a strong portfolio, clear communication, SEO expertise, responsive design expertise, client reviews and post-launch support to ensure success and quality over the long-term. Re: What should I look for in a reliable web design and development agency? Digital Media Digital Marketing by graceweb Hi Sasha, I really agree with your point about clear and consistent communication, without it, even the most skilled agency can fall short. I’d also add that flexibility is important too. Sometimes project needs change mid-way, and it helps to work with a team that can adapt without losing sight of the overall goals. H 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: 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 …