How to call/execute another ASP.net page from the parent ASP.Net page without disrupting the flow of

Posted by NJTechGuy on Stack Overflow See other posts from Stack Overflow or by NJTechGuy
Published on 2010-03-21T05:12:24Z Indexed on 2010/03/21 5:21 UTC
Read the original article Hit count: 222

Filed under:

When a button/link is clicked, I want this URL to be called followed by the execution of the following statements.

The ASP.Net page is in C# btw.

Function A
   statement A
   call abc.apsx
   statement B

abc.aspx is a silent page, doesn't display anything on the page but creates an output.txt file. So when abc.aspx is called, output.txt file is created and Statement B is executed seamlessly. Hope I made sense.

I have no .Net programming knowledge. Please help me.

Thank you..

© Stack Overflow or respective owner

Related posts about ASP.NET