markgrizzle
Programmer
Hi All,
My project_1 folder contains all the asp.net/vb.net pages for my website. I created a project_2 folder for a new c# login page. I did this because I needed to add OpenID support (dotNetOpenAuth), couldn't find any vb.net samples, and wasn't up to the task of porting the c# code to vb.net.
Project_2.login.aspx works, but I can't response.redirect("search.aspx") to any project_1 pages; visual studio 2010 returns a 404 error. Both projects are in the same solution, and the solution compiles. My target framework is ASP.NET 3.5. I've tried the following;
1) add project_1 page links to project 2 (won't compile)
2) copy project_1 pages to project_2 (won't compile)
2) add references for project 1 to project 2 (compiles, returns 404 error)
3) server.transfer("search.aspx")
4) response.redirect("../folder1/search.aspx") (httpException - can't use a leading .. to exit above top directory, but my folders are at the same level)
5) response.redirect(server.transfer("search.aspx"))
Has anyone solved this, or (ideally) seen vb.net samples of OpenID implementations?
Thanks in advance,
Mark
My project_1 folder contains all the asp.net/vb.net pages for my website. I created a project_2 folder for a new c# login page. I did this because I needed to add OpenID support (dotNetOpenAuth), couldn't find any vb.net samples, and wasn't up to the task of porting the c# code to vb.net.
Project_2.login.aspx works, but I can't response.redirect("search.aspx") to any project_1 pages; visual studio 2010 returns a 404 error. Both projects are in the same solution, and the solution compiles. My target framework is ASP.NET 3.5. I've tried the following;
1) add project_1 page links to project 2 (won't compile)
2) copy project_1 pages to project_2 (won't compile)
2) add references for project 1 to project 2 (compiles, returns 404 error)
3) server.transfer("search.aspx")
4) response.redirect("../folder1/search.aspx") (httpException - can't use a leading .. to exit above top directory, but my folders are at the same level)
5) response.redirect(server.transfer("search.aspx"))
Has anyone solved this, or (ideally) seen vb.net samples of OpenID implementations?
Thanks in advance,
Mark