821. Using FrontPage to upload your site. - 07/25/2002 This tutorial assumes that you have already created your web page/site and are ready to publish it to the server. Before you publish, however, take this time to save the web page/site files to your computer's hard drive. This way, you can...
822. Why don't my Links/Images work - 07/25/2002Symptom: Links do not work or Images appear as broken. Resolution: Make sure the path to the file is correct. Your HTML code should not be referring to your personal computer A drive or C drive. Check the file names. File n...
823. Server Side Includes - 07/25/2002If you are using server side includes (SSI) your file should use the .shtml extension. We do not run all .html files through SSI because this will slow down everyones web page downloads.
824. Email Program Setup - 07/25/2002Different email programs have slightly different configurations. Consult your email program help files for program-specific details. We have provided general instructions for the most popular email programs: Netscape Communicator: Go to...
825. How do I upload files to my website - 07/25/2002 How do I upload files to my web site? You have two choices. (1) Use an FTP (File Transfer Protocol) Program, such as WS_FTP. (2) Use your web creation software built-in FTP function (NOTE: We cannot guarantee that every program on the ma...
826. Default Page for Website - 07/25/2002Symptom: I uploaded my files but How Come I still see the under construction page? Resolution: The default page for your site can be one of the following filenames: For Accounts hosted on our unix platform: index.html index.p...
827. Access DSN Connections - 03/14/2002Without DSN <% Set Cnn = Server.CreateObject("ADODB.Connection") Cnn.open "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=c:mydatabase.mdb" %> OLE DB <% Set Cnn = Server.CreateObject("ADODB.Connection") Cnn.open "PROVIDER=MIC...