Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
application
- Page 1
Re: Cannot run exe from asp.net
Programming
Web Development
18 Hours Ago
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
16 Hours Ago
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
15 Hours Ago
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
11 Hours Ago
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
21 Hours Ago
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: What are the common problems encountered in mobile application development?
Programming
Mobile Development
3 Days Ago
by Pelorus_1
There are a number of issues that developers face when developing mobile applications, including issues with device compatibility, poor performance, security vulnerabilities, inconsistent user experience across platforms, and difficulties in integrating third-party APIs.
Evaluating OpenAI GPT 4.1 for Text Summarization and Classification Tasks
Programming
Computer Science
6 Days Ago
by usmanmalik57
… script imports the required libraries and modules into our Python
application
. ```python import pandas as pd import matplotlib.pyplot as plt….xlsx) dataset. The following script imports the dataset into your
application
and displays its first five rows. ```python # https://github.com…
Re: Cannot run exe from asp.net
Programming
Web Development
1 Day Ago
by lennyli
… prototype does not include any security measures. In a real
application
, you would need to implement authentication, encryption, and possibly a…
Re: How to Implement Lazy Loading for Faster Web Portals
Programming
Web Development
2 Days Ago
by gediminas.bukauskas.7
Here is a problem: Blazor WEB
application
working in SSR mode performs partial update of the page after posting. JS initialization does not work in this case. It is difficult to find correct event for performing JS operations.
Re: Cannot run exe from asp.net
Programming
Web Development
2 Days Ago
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 …
Re: Cannot run exe from asp.net
Programming
Web Development
1 Day Ago
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.
Null Pointer Exception in Java Application – Need Fixing
Programming
Software Development
4 Weeks Ago
by YashSmith
My Java
application
crashes with a NullPointerException when trying to access an object …
How to Choose the Right Mobile App Development Company?
Programming
Mobile Development
3 Weeks Ago
by Jameswood32
I'm planning to develop a mobile
application
and am in the process of selecting a development partner. …
Cannot run exe from asp.net
Programming
Web Development
1 Week Ago
by lennyli
…-development/threads/386380/cannot-run-exe-files-in-asp-net-
application
but still lost in trying to achieve something. I installed…
Re: Is linux your daily driver?
Hardware and Software
Linux and Unix
2 Weeks Ago
by Benjamin_17
… Microsoft ecosystem with my job) where they might support some
application
with Linux on the first release, but then fail to…
Re: How to Choose the Right Mobile App Development Company?
Programming
Mobile Development
3 Weeks Ago
by Salem
https://www.daniweb.com/posts/jump/2301408
Re: Question/Answering over SQL Data Using LangGraph Framework
Programming
Computer Science
2 Weeks Ago
by Pelorus_1
Through its combination of natural language processing and structured query generation, LangGraph makes interfacing with databases and extracting insights over SQL data easier than ever.
Re: Cannot run exe from asp.net
Programming
Web Development
1 Week Ago
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
1 Week Ago
by pritaeas
No, Javascript cannot run/start executables on the client machine.
Re: Cannot run exe from asp.net
Programming
Web Development
1 Week Ago
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
1 Week Ago
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
1 Week Ago
by pritaeas
Are you sure IIS is configured to allow running external scripts?
Re: Cannot run exe from asp.net
Programming
Web Development
1 Week Ago
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
1 Week Ago
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
1 Week Ago
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
1 Week Ago
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
1 Week Ago
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.
Implementing a Dynamic Filter Option in a Web Application
Programming
Software Development
1 Month Ago
by YashSmith
… want to add a dynamic filtering option in your web
application
, here’s a simple and effective solution using React. This… functionality is lightweight, customizable, and can be used in any
application
that requires data filtration. Would you like any additional features…
Benchmarking DeepSeek R1 for Text Classification and Summarization
Programming
Computer Science
2 Months Ago
by usmanmalik57
… ``` The script below imports the required libraries into your Python
application
. ```python from huggingface_hub import InferenceClient import os import pandas as…
Best way to find a segment of code that matches a given input segment?
Programming
Software Development
2 Months Ago
by mark_hahn
I need to develop an
application
where I give an llm a piece of code, like …
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC