hi all,
i tried posting this in the VB.NET forum but was redirected to here.
i have a solution with two projects in it. I want to link from an aspx page in one of the projects to an aspx page in the other project but i keep getting errors. (i did a File>Open>Add project to solution to add the second project to the solution)
i would like to be able to do it using a hyperlink or if not the response.redirect. everything i try gives me an error. please help!
project 1 = Reports
project 2 = Website3
i try to call an aspx page in Reports from an aspx page in Website 3 from behind a button.
Response.Redirect("Reports/BodyPart.aspx") this gives me the error:
cannot find resouce: WebSite3/Reports/BodyPart.aspx
Response.Redirect("../Reports/BodyPart.aspx") this gives me the error:
HTTP Error 404 - Not Found
Response.Redirect(Server.MapPath("../Reports/BodyPart.aspx")) this gives me the error: failed to map to the path /Reports/BodyPart.aspx
i also tried dragging and dropping a hyperlink onto the page but i can only see the project that contains that aspx page ie Website3 - i cannot see the Reports project from the navigate url property.
they are all the things that i have tried.
regards
i tried posting this in the VB.NET forum but was redirected to here.
i have a solution with two projects in it. I want to link from an aspx page in one of the projects to an aspx page in the other project but i keep getting errors. (i did a File>Open>Add project to solution to add the second project to the solution)
i would like to be able to do it using a hyperlink or if not the response.redirect. everything i try gives me an error. please help!
project 1 = Reports
project 2 = Website3
i try to call an aspx page in Reports from an aspx page in Website 3 from behind a button.
Response.Redirect("Reports/BodyPart.aspx") this gives me the error:
cannot find resouce: WebSite3/Reports/BodyPart.aspx
Response.Redirect("../Reports/BodyPart.aspx") this gives me the error:
HTTP Error 404 - Not Found
Response.Redirect(Server.MapPath("../Reports/BodyPart.aspx")) this gives me the error: failed to map to the path /Reports/BodyPart.aspx
i also tried dragging and dropping a hyperlink onto the page but i can only see the project that contains that aspx page ie Website3 - i cannot see the Reports project from the navigate url property.
they are all the things that i have tried.
regards