answersLogoWhite

0

Can run asp without iis and pwd?

User Avatar

Anonymous

15y ago
Updated: 8/17/2019

Visual Studio includes a built in web server (basically a mini version of IIS) that you can use for development and debugging, but to actually host a ASP webpage on a server you need IIS.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

How can you run asp script?

how to run asp script. you must be install a webserver program, For example IIS(Internet Information Services),you can search "iis install" in Google.


Is there an easy way to make Apche web server run asp pages?

To run ASP pages on an Apache web server, you can use a module called mod_mono, which allows you to run ASP.NET applications. Alternatively, you can set up a reverse proxy to an IIS server that handles ASP pages. However, native support for classic ASP is limited, so using a dedicated Windows server with IIS is generally more straightforward for ASP applications. For best results, consider migrating your ASP code to a more modern framework if possible.


PWD Electrical licences in pune online?

two phashe motor run


What are the advantages of PHP over ASP.net?

1. Cost No windows license required - run it on your Linux server. Technically you don't have to buy an IDE to code ASP, however most people do. PHP editors ideally are just a text editor with syntax highlighting, however with eclipse you can still have a free, fully featured IDE for PHP. 2. Resources Apache/PHP uses dramatically less resources than IIS/ASP - so you could get away with cheaper /older hardware. Works great with Linux. 3. Robustness/Reliability Generally speaking Apache/PHP is significantly more stable than IIS/ASP, so you will have generally better uptime. 4. Documentation/Standards Not sure how ASP is, however PHP.net has great documentation for hard-core developers, all the way down to the I just started today developers.


What is the IIS Server?

IIS is a Web server produced by Microsoft. IIS will only run on computers using a Windows operating system. Microsoft IIS runs ASP.NET code which is native to windows systems. Stephen Williamson, Server Engineer, http://www.HostMySite.com?utm_source=bb


Why pwd command does not create a process?

Some versions of pwd are internal to the shell, and thus do not need to be executed as a separate process. The command executes so fast you are unlikely to see it on a list of processes, anyway. Here is a very crude test to show that pwd. when a separate binary, does in fact create a new process. It consists of two scripts with an infinite loop, one constantly running pwd, the other running PS -A and grepping for the word pwd. You will need to console displays or two terminals to test this. Slowly but surely, the script checking for pwd will spit out instances of pwd being run or exiting (defunct). #/bin/sh #This script constantly runs pwd. Kill with Ctrl - C COUNTER=1 while [ $COUNTER -lt 2 ]; do /bin/pwd done #/bin/sh #This script constantly runs PS -A|grep pwd. Kill with Ctrl - C COUNTER=1 while [ $COUNTER -lt 2 ]; do PS -A | grep pwd done


Can you run an ASP program on Unix or Linux?

http://www.apache-asp.org/


PHP can be run on Microsoft Windows IIS(Internet Information Server)?

IIS is a Windows-only application, however it's important to note that running PHP on IIS is not the same as running PHP on Windows. XAMPP or WampServer are two choices for running PHP on Windows. However, these two options provide you with some more options. They use MySQL or MariaDB as a database server and run Apache as a web server. To learn more about data science please visit- Learnbay.co


How to convert asp for use on UNIX?

ASP pages are a Microsoft technology. To convert them to run under Unix you could install a package in Apache that understands ASP, or you could rewrite it so that it uses something more generic, such as Perl, PHP, or Python.


Which is better PHP Apache and MySQL or ASP IIS and MsSQL?

PHP/APACHE/MYSQL = open source solution, meaning they are available for free download. They will run in both Microsoft-based servers and Unix/Linux-based servers. By being open source, there are quite a few no-cost open-source solutions and programming tools that will run on this set-up such as content management systems (Joomla!, Drupal) and shopping carts (VirtueMart - runs on Joomla!). PHP/APACHE/MYSQL is widely supported by by internet hosting providers so transporting your site from one host to another should not be a problem. ASP/IIS/MS-SQL = A proprietary commercial solution provided by Microsoft. I have used both and prefer programming in PHP. I would suggest going with the open-source solution unless you have a compelling reason to use the proprietary Microsoft one.


What is the difference beteween ASP and PHP?

There are lots of benefits of using PHP over ASP Hosting is cheap and as I can think off 1. Because of free OS available that is Linux 2. Web server is free 3. Database is free (MySQL) and gels with it very well 4. As OS is Linux you don't pay any anti virus cost 5. Language is easy to learn and lots of resources available


How to change the localhost from default IIS folder to wampfolder?

You would have to disable the IIS service if you want to run localhost for WAMP server.There is a way round it where you can run both IIS & WAMP Server thereby using PHP & ASP.NET both. Just change the port of the WAMP server. Here are the instructions, hope it helpsFind the port number in httpd.conf file. Use the Find functionChange from port number 80 to anything say suppose 8080For files on wamp server use localhost:8080This will let you run both php & ASP.NET on your computer.