|
On the Output directory
screen you can choose output directory where all generated files
will be saved.
Preview
ASPRunnerPro 7.0 comes with built-in web server (IIS EXpress).
In most cases you can leave all settings on this page "as is",
click Build and
View in browser on the next
screen. Built-in web server won't interfere with your existing web
server if you have one.
In some cases you may want to view generated application using
your own web server. In this case switch to 'I have my own web
server' option and enter URL manually. You will to change output
directory as well to one of web server subdirectories (i.e.
C:\Inetpub\WWWROOT\project1 if you have IIS installed).
Note: If you
don't have a web server and want to install one, check How to install and
configure IIS article.
Select the Full build
check box to perform full build of the project. Otherwise, partial
(faster) build will be performed.
Compress javascript
files option allows to compress generated Javascript files
leading to faster load times. Unless you need to debug Javascript
code leave this option on.
Server database
connections
You can create several database connections and select required
one before building the project. For example, you can use
<Default> database connection for the local testing and
create new database connection for uploading files to the
production server.
To create new database connection, click the New button. Then specify connection
name and settings. Click OK.
If you are using MySQL locally, database connection settings may
be as follows:
|
strConnection
= "DRIVER={MySQL ODBC 3.51
Driver};Server=localhost;Uid=root;Pwd=;Database=cars;OPTION=3"
|
When uploading files to the server, you may use the following
settings:
|
strConnection
= "DRIVER={MySQL ODBC 3.51
Driver};Server=localhost;Uid=mike375;Pwd=dcHd*eS2;Database=mike375_cars;OPTION=3"
|
|