I have two Webforms projects with one authentication and one without. I need to call a project form without authentication inside from the project with authentication. How do I?
I have two Webforms projects with one authentication and one without. I need to call a project form without authentication inside from the project with authentication. How do I?
The best way to do this I believe is the Response.WriteFile ();
Response.Write("Please Login: <br>");
Response.WriteFile("login.txt");
In the same way a file can be a URL.
See more at link