How can I import a web project?

  • Thread starter Thread starter Moondog
  • Start date Start date
M

Moondog

I have a set of files I would like to import into Visual Studio. It
is a web application written in C#. I've tried everything but am
having a helluva time getting it to run without errors. Need a recipe
to make this happen.

Thanks,
Dominic Isaia
(e-mail address removed)
 
One clean way is to start a brand new Web Project. Then right click on the
new Web Project and select "Add Existing Items". Finally, browse to the
folder where the item exists and open it. Replace and rename the new items
accordingly.

John
 
I tried that. The problem is when I add existing items, it does not
add folders. There are a few subfolders in the project. One of the
subfolders is named "_vti_cnf". When I try to create a new folder
called "_vti_cnf" it gives me an error message, "Invalid folder name.
Folder names starting with '_vti' are reserved for use by web server".


Dominic Isaia
(e-mail address removed)
 
I also keep getting this message "Compiler Error Message: CS1595:
'GlobalUserControls.header' is defined in multiple places'

I saw it referenced on Microsoft's knowledge base and tried their
solutions but still no luck.


Dominic Isaia
(e-mail address removed)
 
Problem solved:
I went into IIS and lowered security for my directory. Also found out
there were two dll's associated with my project. One with the name I
chose (RFS) and one with the original name of the project (RFS3).
These were conflicting with each other, so I simply deleted the
RFS3.dll.
 
Back
Top