Re: Fujitsu Windows Server 2019 Servers Rebooting at 11pm every day Hardware and Software Microsoft Windows by NuGG … on schedule configured, and the management controller retained the old config even though I put a fresh OS on it. Doh… Re: Cannot run exe from asp.net Programming Web Development by Neil_brown001 … inside the right page layout. About the web.config confusion Having two web.config files is normal in ASP.NET apps. One… IIS doesn’t seem to match what’s in web.config, it could be due to caching or differences in how… Re: Cannot run exe from asp.net Programming Web Development by lennyli … page layout. > > About the web.config confusion > Having two web.config files is normal in ASP.NET apps. One… IIS doesn’t seem to match what’s in web.config, it could be due to caching or differences in how… Cannot run exe from asp.net Programming Web Development by lennyli … 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 studio… 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 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 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 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 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 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 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 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 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 … Re: Config file Programming Software Development by Ancient Dragon config files have a general format as [icode]<tab name&… Config file Programming Software Development by kelechi96 … str; double flt; string myadd; }; void loadConfig(Config& config) { ifstream fin("config.txt"); string line; while (getline(fin, line…myadd") != -1) sin >> config.myadd; } } int main() { Config config; loadConfig(config); cout << config.num << '\n'; cout <&… config error Programming Web Development by L-D ….php on line 35 Index shows up but with errors. config file <?php include "connect.php"; $settings = …["hits_visitor"]; } ?> index file <?php include "config.php"; $get_referid = $_GET['referid']; if (!empty($get_referid)) { $get_referid = … Re: Config.sys issue for XP Hardware and Software Microsoft Windows by Nick Evan …another computer. Then open [root dir slave]:\config.sys with notepad and post it's contens … save the file as [root dir slave]:\config.sys (there doesn't have to be anything…sure to open the right config.sys[/B] (not c:\config.sys but the config.sys from your slave)… Restart Wait for knoppix to load Open config.sys with kwrite and post it's contens… Config file to web interface and vice versa Programming Computer Science by modesto916 … out a eficient way of translating quagga's default config file to some structure that is ease for the … is a example of quagga bgpd.conf, which is the config file for the BGP Daemon: ! ! Zebra configuration saved from…I was thinking about using this feature to avoid handling config files manually, my software would just need to establish … Config File Programming Software Development by ssharish2005 Just wondering, if anyone has got a library or good link to parse a config file. If not is there any effcient way of hanlding config file, where the config is just normal text file. Its not XML file or anything. ssharish Re: Config file to web interface and vice versa Programming Computer Science by jwenting file looks rather simple as config files come. And as you say the system is open … Re: Config File Programming Software Development by ssharish2005 Thanks Ancient Dragon for your quick reply. But unfortunatly I am on *nix environment. So looking for a lib which can support unix config file :( I Should have mentioned that. Or is there any better way that we can parse, rather than going all the down throught the file and finding out the tag? ssharish Config Manager Programming Software Development by njitram ….Text = ConfigurationManager.AppSettings["username"]; Configuration config = ConfigurationManager.OpenExeConfiguration(Application.ExecutablePath); ConnectionStringSettings connstr = config.ConnectionStrings.ConnectionStrings["username"]; String strConn… Config.xml Programming Software Development by shers … or the administrator to change the initial path from the Config.xml file. But, surprisingly, when I tested the program from… PC on the network, it reads the path without the config.xml. How could that happen? How do I code to…