Click here to Skip to main content
15,887,350 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi Im new to ASP.NET ..

In my solution I have two projects and I need a access a webpage of a second project from my 1st project ..
Used

C#
protected void registerButton_Click(object sender, EventArgs e)
        {
            Response.Redirect("./PersonalDetails/Details.aspx");

        }



where PersonalDetails is my second project... but no sucess

Please help Urgent
Thanks
Posted
Updated 27-Apr-12 20:14pm
v3

1 solution

used parameter

like

protected void registerButton_Click(object sender, EventArgs e)
{
Response.Redirect("./PersonalDetails/Details.aspx?u=23&d=3");

}
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900