Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to combine two project into a single one

Status
Not open for further replies.

ASPnetNovice

Programmer
Apr 28, 2005
19
US
Hello,

I have the following problem I create my application in two parts.

part one handles a given functionality and was created a separate asp.net web application

part two handles a different functionality and was also created a separate asp.net web application.

Know that I one to combine them togheter I am having problems.

what I did was to add the pages from one project to the other using
project > Add Existing Item

when I try to run the consolidate project I get the "Parser Error" error and the error occured

in the first line in the page directive


Line 1: <%@ Page Language="vb" AutoEventWireup="false" Codebehind="page0.aspx.vb" Inherits="int.page0"%>

Does someone know who to fix this particular problem ?

Is there any better approach to combine two project into a single one ?




 
I think it may be caused by the Inherits line:

Inherits="int.page0"

the int is the project name

you need to change that to the current project name
 
int is the actual name of my application so that is not the problem.

 
Either add a referrence to the int project in your master project or change the int namespace everywhere to your master project's namespace.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top