Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
"application
- Page 1
Re: Android Native - How To Request Notification Permissions
Programming
Mobile Development
3 Days Ago
by Inamullah_1
Great tutorial—thanks for sharing! Just a few quick additions: Starting with Android 13 (API 33), apps must request permission for POST_NOTIFICATIONS at runtime, while older versions allow notifications by default. It’s best to check the Android version before requesting this permission to avoid unnecessary prompts. Also, remember to handle the …
Re: Screaming Frog Comparisons
Digital Media
Digital Marketing
Search Engine Strategies
3 Weeks Ago
by Dani
… already show up within tooltips in the
application
. Per the tutorial you linked to, &
quot
;‘New’ and ‘missing’ are URLs that only… exist in one of the crawls.&
quot
; That makes sense to me. However, when it says… URLs that exist in both the current AND previous crawls.&
quot
; I'm confused what the difference between them is? What…
Re: Best Approach for Starting a Linux-Based Home Automation Pro
Hardware and Software
Linux and Unix
3 Weeks Ago
by WilliamOG
Great project idea, and you're already ahead with your electronics background. For the OS, Raspberry Pi OS Lite is a solid starting point—lightweight, well-supported, and ideal for headless setups. If you want something even more stripped down, check out DietPi or Ubuntu Server for Pi, but the trade-off is slightly less community support.
Evaluating OpenAI GPT 4.1 for Text Summarization and Classification Tasks
Programming
Computer Science
2 Months Ago
by usmanmalik57
… The following script imports the dataset into your
application
and displays its first five rows. ```python…(outputs): subjects = [&
quot
;Computer Science&
quot
;, &
quot
;Physics&
quot
;, &
quot
;Mathematics&
quot
;, &
quot
;Statistics&
quot
;, &
quot
;Quantitative Biology&
quot
;, &
quot
;Quantitative Finance&
quot
;] # Remove square brackets…
Cannot run exe from asp.net
Programming
Web Development
2 Months 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: Cannot run exe from asp.net
Programming
Web Development
2 Months Ago
by lennyli
… 1) pyautogui.typewrite(text) conn.close() server_socket.close() if __name__ == &
quot
;__main__&
quot
;: main() ``` ### Step 3: Create the Client (Controller) This script… prototype does not include any security measures. In a real
application
, you would need to implement authentication, encryption, and possibly…
Re: Justice Department Offers Grants Against Internet Predators
Digital Media
Digital Marketing
1 Month Ago
by JackRyan248
… to 48 months. > > A large part of the
application
description lists the various ways that groups being awarded grants…. > > None of the objectives include &
quot
;reduction in number of children affected&
quot
; or, in fact, anything about children at…
Integrating OpenAI Web Search API in LangGraph
Programming
Computer Science
1 Month Ago
by usmanmalik57
…below imports the required libraries into your Python
application
. ```python from typing_extensions import TypedDict from …
quot
;ask_web&
quot
;, ask_web) builder.add_node(&
quot
;respond&
quot
;, respond) builder.add_edge(START, &
quot
;ask_web&
quot
;) # start → first node builder.add_edge(&
quot
;ask_web&
quot
;, &
quot
;respond&
quot
…
Delete unused MySQL indexes
Programming
Databases
1 Month Ago
by Dani
How can I identify and delete unused MySQL indexes? I have a large table that has somehow accumulated way too many indexes over the years, and I'd now like to identify and delete indexes that are no longer used by the
application
.
Re: Delete unused MySQL indexes
Programming
Databases
1 Month Ago
by toneewa
… supporting foreign keys. This can break your data integrity or
application
. Make sure they are enabled: UPDATE performance_schema.setup_consumers SET enabled…
Best Approach for Starting a Linux-Based Home Automation Pro
Hardware and Software
Linux and Unix
1 Month Ago
by Aria James
… relatively new to working with Linux for this kind of
application
. I’m hoping to get some advice from the community…
Re: Is linux your daily driver?
Hardware and Software
Linux and Unix
2 Months 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 Implement Lazy Loading for Faster Web Portals
Programming
Web Development
2 Months 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: Question/Answering over SQL Data Using LangGraph Framework
Programming
Computer Science
2 Months 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
2 Months 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
2 Months Ago
by pritaeas
No, Javascript cannot run/start executables on the client machine.
Re: Cannot run exe from asp.net
Programming
Web Development
2 Months 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 &
quot
;online notepad&
quot
; 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
2 Months Ago
by lennyli
… I specify (eg, notepad.exe, or ribbons.scr)? <%@ Language=&
quot
;VBScript&
quot
; %> <!DOCTYPE html> <html> <… Set objShell = Nothing ' Output the result Response.Write(&
quot
;Executable executed with result: &
quot
; & result) %> </body> </html…
Re: Cannot run exe from asp.net
Programming
Web Development
2 Months Ago
by pritaeas
Are you sure IIS is configured to allow running external scripts?
Re: Cannot run exe from asp.net
Programming
Web Development
2 Months 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
2 Months Ago
by lennyli
… web site. > > For example there is an &
quot
;online notepad&
quot
; which does some basic notepad work. And there are…
Re: Cannot run exe from asp.net
Programming
Web Development
2 Months 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
2 Months Ago
by Salem
… this. Can you be more specific about what your &
quot
;hardware product&
quot
; is. Because &
quot
;can be seen as a notebook computer…&
quot
; suggests it isn't a notebook computer at all, but …
Re: Cannot run exe from asp.net
Programming
Web Development
2 Months 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.
Re: Cannot run exe from asp.net
Programming
Web Development
2 Months 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
2 Months 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.
Re: Cannot run exe from asp.net
Programming
Web Development
2 Months 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: Cannot run exe from asp.net
Programming
Web Development
2 Months Ago
by Salem
> When I run the command &
quot
;python server.py&
quot
; on the server pc, it held …So did it even give you `print(&
quot
;Waiting for a connection...&
quot
;)` ? Consider making your server main like… this. if __name__ == &
quot
;__main__&
quot
;: print('Server Begin') main() print('Server End') …
Re: Cannot run exe from asp.net
Programming
Web Development
2 Months Ago
by lennyli
…gt; So did it even give you `print(&
quot
;Waiting for a connection...&
quot
;)` ? > > Consider making your…server main like this. > > if __name__ == &
quot
;__main__&
quot
;: > print('Server Begin') > main() >…and the output did not have the word &
quot
;python&
quot
; anywhere. Even if i run the setup and…
Re: Cannot run exe from asp.net
Programming
Web Development
2 Months 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
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
Backlink Auditor
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC