Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
port25
- Page 1
Cannot run exe from asp.net
Programming
Web Development
6 Days Ago
by lennyli
I have tried to read https://www.daniweb.com/programming/web-development/threads/386380/cannot-run-exe-files-in-asp-net-application but still lost in trying to achieve something. I installed the latest .net framework, and IIS on the latest updated windows 11. I wish to achieve the following: Have a webpage with a button, when pressed, it will …
Re: Cannot run exe from asp.net
Programming
Web Development
6 Days 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
5 Days Ago
by pritaeas
No, Javascript cannot run/start executables on the client machine.
Re: Cannot run exe from asp.net
Programming
Web Development
5 Days 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
5 Days 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
5 Days Ago
by pritaeas
Are you sure IIS is configured to allow running external scripts?
Re: Cannot run exe from asp.net
Programming
Web Development
5 Days 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
4 Days 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
3 Days 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
3 Days 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
3 Days 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: Contact form does not working
Programming
Web Development
1 Month Ago
by Biiim
Emailing became more restrictive in the last year, so when you have a PHP server with no emailing setup the emails often fail completely now as there is so much wasted bandwidth on spam emails that these get turned down instantly. I solved it on my hosting with the [PHPmailer](https://github.com/PHPMailer/PHPMailer) package, it's maybe a bit of …
Re: How do I establish an open connection to an open web browser in C#?
Programming
Software Development
2 Months Ago
by pathofbuilding
To attach Selenium to an already open Chrome browser in C#, launch Chrome manually with debugging enabled using chrome.exe --remote-debugging-port=9222 --user-data-dir="C:\SeleniumChromeProfile", then use ChromeOptions options = new ChromeOptions(); options.DebuggerAddress = "localhost:9222"; IWebDriver driver = new ChromeDriver…
Re: How To Send MYSQL Data To An Email
Programming
Web Development
2 Months Ago
by Davidmenk3
Looks like your email issue is causing more drama than a bad Wi-Fi connection! The problem is in $query["SELECT * FROM demo ORDER BY ID DESC LIMIT 1"];—this syntax is invalid. Fix it to $query = "SELECT * FROM demo ORDER BY ID DESC LIMIT 1";. Also, fetch the data properly and append it to $body like this: $row = …
Re: How To Send MYSQL Data To An Email
Programming
Web Development
2 Months Ago
by Biiim
Here's the code I've been using for about 15 years now - but a bit more simplified: function dbConnect($type = ''){ $conn = mysqli_connect( DBHOST, DBUSER, DBPASS, DBDB); if (!$conn) { echo "Error: Unable to connect to MySQL." . PHP_EOL; echo "Debugging errno: " . mysqli_connect_errno() . …
Re: Port number, ip address, computer name
Hardware and Software
Microsoft Windows
20 Years Ago
by Naveen
port nos. vary depeding on the protocol using them. in command prompt u can run "netstat -a" to see what protocols are running,their port nos. their conn. status etc.
port scanner????
Programming
Software Development
15 Years Ago
by willygstyle
Hello all. I been messing around with this port scanner for a while now and can't wrap my head around the speed issue. I tried to create a few threads to help speed it up, but I'm pretty sure I havn't made any progress. Could someone explain why the speed is so slow, and why the threads I created still run in succesion and not at the same time …
Re: port scanner????
Programming
Software Development
15 Years Ago
by willygstyle
Well I got some interesting results with a version that uses threads only. I did some searching around on google and found one that works really good. I think I have somwhat of an idea what the problem is. It seems that while the threads are doing their thing, idle goes a little haywire. [CODE= python] import socket import threading from …
Re: port scanner????
Programming
Software Development
15 Years Ago
by The_Kernel
Not sure why your version is running slowly. Here's a quick and dirty version I just came up with using threads and a queue. It runs very quickly for me (less than a second I'd guess). [CODE=python]import socket import threading import Queue import time class Worker(threading.Thread): def __init__(self, port_queue): threading.…
port forwarding through a dsl modem
Hardware and Software
Networking
13 Years Ago
by qavo
I am totally a network novice. My plan is to do some simple low-bandwidth testing of a web server I have configured using Tomcat standalone technology. It runs on port 5050 and works as expected in "localhost" mode. My dlink dsl504T modem/router offers "port forwarding" to allow web users to access an IP address within the …
Port Scanner in C++
Programming
Software Development
17 Years Ago
by HLA91
Hi all I was looking for a port scanner to see what was open on my laptop and I thought as I was learning C++ why not search for a C++ port scanner. I came across this code I can make sense of most of it but it wont compile. I have linked the -lws2_32 file that I was told is needed because I use Dev, I looked in Project -> Project Options …
Re: Port scanning
Hardware and Software
Networking
15 Years Ago
by Iamthedude
[QUOTE=kevin best;1128929]Hello all, I 'm new to network security and have few question to be clarified. I will appreciate if experts give me a proper defination. 1)Security incident has happened , a hacker 's hacked into a monitored network what should be done? 2)Definition of port scanning 3)Who's responsible for overall security of a …
port conflict with Glassfish v2 using netbeans 6.5 beta
Programming
Web Development
15 Years Ago
by valuba
hello all, i just joined this forum. i actually joined because i am having a serious problem with my program which i believe u can help me solve. i am designing a web based application that authenticates user login using MySql as database, java as programming language and NetBeans 6.5 beta as the IDE. i problem i am having with my program is …
Re: port conflict with Glassfish v2 using netbeans 6.5 beta
Programming
Web Development
14 Years Ago
by ashalatha6
Hi Valuba, I am also having the same problem. Have U found out the solution?? If so, please let me know abt it to my ID : <EMAIL SNIPPED> Asha [QUOTE=valuba;1102594]hello all, i just joined this forum. i actually joined because i am having a serious problem with my program which i believe u can help me solve. i am designing a web …
Port Mapping in C# is not working
Programming
Software Development
12 Years Ago
by Nina 4 Ever
i need to perform port forwarding in a desktop application written in C#. i used this code : using System; using System.Threading; using NATUPNPLib; namespace iSpyApplication { public static class NATControl { public static UPnPNAT NAT = new UPnPNAT();…
Re: Port forwarding
Hardware and Software
Networking
17 Years Ago
by binoj_daniel
Portforwarding is basically a feature telling the reouter to rout all the traffic to a particular port to a different port. By default all the HTTP requests are channeled through port 80, But most of the residential ISP's block port 80 so that those connection cannot used for hosting sites and IP Cameras. So there is always a work around for …
Re: Port Forward MAJOR PROB!!
Hardware and Software
Networking
14 Years Ago
by rohan_tahil
[QUOTE=CimmerianX;1351884]If canyouseeme says the port is open, then something is answering it. I assume you have triple checked that the port forward is going to your machine's ip and that your machine has a static ip or dhcp reserved ip. Since the port is answering, then I think its safe to assume that there are no firewall issues. …
Re: Port Forward MAJOR PROB!!
Hardware and Software
Networking
14 Years Ago
by rohan_tahil
[QUOTE=CimmerianX;1351884]If canyouseeme says the port is open, then something is answering it. I assume you have triple checked that the port forward is going to your machine's ip and that your machine has a static ip or dhcp reserved ip. Since the port is answering, then I think its safe to assume that there are no firewall issues. …
Re: Port forwarding not working?
Hardware and Software
Networking
13 Years Ago
by JorgeM
So, it seems that you that the issue you are describing is that you are uanble to connect to your internal resource from the internet. For this to work, there are a few things you have to make sure are in place... 1) you need to know your external IP. I think you got this part since you know how to access sites that provide you with your …
Re: Port forwarding
Hardware and Software
Networking
17 Years Ago
by binoj_daniel
[QUOTE=bondi007;470312]Ok we have disabled the secondry port but no look what would the internal port be and the public port be would they both be 80 and what would the other thing be FTP WWW. TELNET Well Known Port Any ideas I am at work now so could you tell me know and we could try it[/QUOTE] See Port 80 is used for HTTP and…
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