How to call/execute another ASP.net page from the parent ASP.Net page without disrupting the flow of
- by NJTechGuy
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..