Q. 01 Is it possible
to install CDONTS mail component on an IIS server?
It's my prefered email component.
|
We have both CDONTS
and ASPmail installed. We will install free component
for free and custom component for $10 one time installation
fee.
|
Q. 02 Do you provide an ability
to password-protect websites and/or allow for custom
error pages?
|
Yes, we provide
password-protected directory and custom error pages.
|
Q. 03 Do your servers support
asp.net , *.aspx scripts?
|
Yes, we do support
ASP.NET
|
Q. 04 How to disable ASP.Net
custom error?
|
<configuration>
<system.web> <customErrors mode="Off"/>
</system.web> </configuration> This
tag should then have its "mode" attribute
set to "Off".
|
| Q. 05 How
do I create custom 404 page? |
| Create 404.asp inside
your wwwroot.
|
| Q. 06 Do
you have a sample SQL database connection string?
|
db_server = "<SQL
server name/IP>,<Port No>"
db_user = "username"
db_pass = "password"
db_name = "database name"
conn_str = "Provider=SQLOLEDB;Data Source="
& db_server & ";User ID=" &
db_user & ";Password=" & db_pass
& ";Initial Catalog=" & db_name
|
| Q. 07 Microsoft OLE DB Provider
for ODBC Drivers error '80004005' [Microsoft][ODBC
Microsoft Access Driver] Operation must use an updateable
query. |
The folder where
you stored the database has to have read/write permission.
|