Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
button
- Page 1
Re: Cannot run exe from asp.net
Programming
Web Development
5 Days Ago
by Neil_brown001
…directly — it’s a huge security risk. Why your webpage
button
might not be working The page might not be properly… Make sure the app is being served correctly and the
button
is inside the right page layout. About the web.config…port 80 or 443. Best approach If you want a
button
that launches an app: On the server: Only for background…
Re: Cannot run exe from asp.net
Programming
Web Development
3 Days Ago
by lennyli
… risk. > > Why your webpage
button
might not be working > The page might…the .exe. > > If the
button
doesn’t even appear, it could be an …sure the app is being served correctly and the
button
is inside the right page layout. > … > Best approach > If you want a
button
that launches an app: > > On the …
Re: Cannot run exe from asp.net
Programming
Web Development
3 Days 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
3 Days 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
3 Days 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
3 Days 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
3 Days 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
2 Days 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 …
Cannot run exe from asp.net
Programming
Web Development
1 Week Ago
by lennyli
… wish to achieve the following: Have a webpage with a
button
, when pressed, it will launch a webpage that runs a…, i dont know why the index.cshtml doesnt show a
button
. Also disappointingly the notepad.exe did not run even when…
Re: Cannot run exe from asp.net
Programming
Web Development
1 Week Ago
by lennyli
… webpage http://192.168.0.2. If I click a
button
on that HTML page, it can run something, such as…
Re: Cannot run exe from asp.net
Programming
Web Development
1 Week Ago
by Salem
… with Y. Initially asked... > Have a webpage with a
button
, when pressed, it will launch a webpage that runs a…
Re: The Impact of User Research on UX Design
Digital Media
UI / UX Design
1 Week Ago
by john_111
… you imagine how hard it would be to remember which
button
took you to which page, several days later? This was…
Re: What Happened When We Applied Psychology-Backed Tweaks to a Funnel?
Digital Media
Digital Marketing
1 Week Ago
by graceweb
It’s amazing how just a few strategic changes can turn a struggling funnel into a success story. The emphasis on trust signals and emotional storytelling really resonates—those elements create a connection that can be the deciding factor for prospects. Thanks for highlighting those key takeaways! It’s a good reminder that sometimes it’s not …
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 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 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 to open an Excel Document in VB.NET
Programming
Software Development
1 Week Ago
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
1 Week Ago
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: How to open an Excel Document in VB.NET
Programming
Software Development
1 Week Ago
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.
send checkbox to email using phpmailer
Programming
Web Development
2 Months Ago
by ianhaneybs
…</label> </div> </div> <
button
class="default-btn" type="submit" name…="submit">Get My Quote</
button
> </div> </div> </form&…
Re: How to contact a specific member
Community Center
Say Hello!
2 Months Ago
by Dani
… can message a member by clicking on the Business Card
button
in their member profile. If you have never interacted with…
Re: How to Implement Lazy Loading for Faster Web Portals
Programming
Web Development
1 Month Ago
by Dani
… feature). You should be able to click the little edit
button
for up to 10 or 15 minutes (I forget which…
Re: How to Implement Lazy Loading for Faster Web Portals
Programming
Web Development
1 Month Ago
by jkon
…). > You should be able to click the little edit
button
for up to 10 or 15 minutes (I forget which…
Re: What Happened When We Applied Psychology-Backed Tweaks to a Funnel?
Digital Media
Digital Marketing
1 Month Ago
by asadkhan12
Your post perfectly highlights the power of behavioral psychology in funnel optimization! The results speak for themselves—small yet strategic psychological tweaks can make a massive impact on conversions. Trust signals, emotional storytelling, and cognitive ease are often overlooked but make all the difference. The way you broke down each …
Re: send checkbox to email using phpmailer
Programming
Web Development
2 Months Ago
by Dani
I would begin by making sure that you sanitize input passed in via $_POST. This ensures that someone doesn't pass in something like `$POST['oneway'] = '</p>Foo!<strong>Blah</strong>` and completely screw up your HTML, or, worse yet, inject Javascript into your HTML. <p><b>One Way:</b> ' . …
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