
June 25th, 2004, 10:37 PM
|
|
Registered User
|
|
Join Date: Jun 2004
Posts: 4
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
I'm not sure if vs will work with 98. we have win 2k in the office and how it works is you set up a folder on the web server as your web site. you have to set it up in IIS. ((the server needs to have the dot net framework))
You have to set the permissions on the folder(you do this as you would set permissions on any folder) to allow ASPNET and IUSER to have read and execute access only.
Then you go in IIS and set up your website to use that folder((the default website folcer is C:\inetpub\wwwroot but you can set it up to any folder, or you can add a virtual directory that references a folder))
Once you have it set up, you go to your development machine. With VS installed, all you do is open a new project. It will ask you for an address. if you are using the default web folder, the address you need to input will be http://servername
if you are using a virtual directory, it will be http://servername/virtualdirectoryalias
It will automitacally connect and create the project. Very easy.
|