With calling a form from another project in Webforms?

0

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?

    
asked by anonymous 14.09.2017 / 15:03

1 answer

0

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

    
14.09.2017 / 16:14