|
-
Jan 12th, 2001, 08:06 PM
#1
Thread Starter
Member
Does anybody know a good and cheap webprovider with access to frontpage 2000, cgi, and other "protected" devices. Is there any for 20- 50 $ per month? Thanks
-
Jan 12th, 2001, 09:09 PM
#2
Member
-
Jan 12th, 2001, 09:38 PM
#3
Hyperactive Member
you could take a look at http://www.burlee.com
-
Jan 13th, 2001, 01:03 AM
#4
PowerPoster
burlee
Yes, i highly recommend burlee myself, but if you don't want any complicated restrictions, then don't go with the unlimited plan.
i have and recomend a version of the basic plan!
-
Jan 15th, 2001, 12:29 PM
#5
Black Cat
What kind of restrictions do they have on the unlimited plan? I was planning to use it to host my personal domain.
Josh
-
Jan 15th, 2001, 06:05 PM
#6
Hyperactive Member
the unlimited plan would be sufficent for your personal domain. you can have either fp2000 or FTP support, full asp, but not your own components, its a little skimpy on the cgi, but there customer service is great. also, you can't have a unique ip number for the unlimited, since it is shared hosting.
-
Jan 17th, 2001, 01:22 PM
#7
Black Cat
Yeah, thanks, I think the unlimited plan would be good - I don't want Front Page, just ASP with ADO and maybe the FileSystemObject. I just need a cheap place to stick my Resume and share a few pictures I take with my digital camera.
Josh
-
Jan 17th, 2001, 04:10 PM
#8
Hyperactive Member
then the unlimited plan is the way to go. full asp. have fun man
-
Jan 26th, 2001, 06:31 AM
#9
I reccomend http://www.f2s.com.
Its FREE and has the following : -
20 Mbytes web space
Unlimited emails
Unlimited Internet capacity
Scripting in PHP4 and Perl
Webalizer web site statistics
Virus protected email
Microsoft Frontpage 2000 extensions
Database servers etc
-
Jan 28th, 2001, 07:18 PM
#10
Is it free to US customers, and does it have MySQL database?
-
Jan 29th, 2001, 06:09 AM
#11
I've tried them, and they are very good, but I would rather have PHP than ASP...
-
Jan 31st, 2001, 07:22 PM
#12
I use Brinkster (was eWebCity) and their premium membership with SQL Server DB is great. You get a virtual server for yourself and the service is friendly. I've been using them for a few months and am having my domain name transfered to them from freenetname.
-
Feb 2nd, 2001, 10:30 PM
#13
Lively Member
I have tried brinkster, but i have problems in setting up my database. I normally test out my asp pages with personal web server. For this case, i set up my database using the ODBC - User DSN. How do I set up it on brinkster, or it uses another way to connect to database.
Here is a sample of my code..
<%
Set objConnection = server.CreateObject( "ADODB.Connection" )
Set objRecord = server.CreateObject( "ADODB.RecordSet" )
Call objConnection.Open( "DSN=Student" )
strQuery1 = "SELECT * FROM Examination INNER JOIN AcademicRecords2 ON Examination.ExaminationCode = AcademicRecords2.ExaminationCode WHERE (((AcademicRecords2.PuteraID)= " & _
Session( "StudentLoggedIn" )& _
"));"
Call objRecord.Open( strQuery1, objConnection, 1, 2 )
%>
The problem is i can't get the asp page to run the code. How do I make it work on brinkster?
All reply is appreciated. Thank you.
-
Feb 5th, 2001, 07:26 AM
#14
Black Cat
I stick the connection string in the global.asa:
Code:
Application("ConnString") = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\Databases\MyDB.mdb;"
Then use that for the Connection when opening a recordset:
Code:
Set rsCodes = Server.CreateObject("ADODB.Recordset")
rsCodes.CursorLocation = adUseClient
rsCodes.Open "SELECT * FROM CodeTable",Application("ConnString"),adOpenForwardOnly,adLockReadOnly
Set rsCodes.ActiveConnection = Nothing
Do While Not rsCodes.EOF
...
And no DSN is needed, and I only have to use the connection string once = makes the code easy to maintain. You can use Server.MapPath to find the physical path of your DB if needed.
Josh
-
Feb 5th, 2001, 08:33 AM
#15
Addicted Member
The best of the best
I've used a lot of webservers, and here's a few of 'me i'd like to reccomend:
1. NBCi.com -FTP access and unlimited space and bandwith
2. This isn't a host but www.freewebspace.net has a great database with a very friendly search option
-
Feb 9th, 2001, 04:23 PM
#16
http:www.f2s.com - supports the following :-
20 Mbytes of web space
Frontpage 2000 support
Advanced PHP4 scripting
Perl cgi scripting
Webalizer website statistics
website Search Engine
Database Servers
www.YOURNAME.f2s.com
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|