In windows we can show a page frm another page by using Page.show(),
in web there is no such
method so how to that.
I am making change to a page from another application and then
displaying that page.
For eg. A page has a textbox, from an application of another
application I want to write hello in it so I create a dll of the
application that contains the page with the textbox. Now I add this
application's reference to another application. From this other
application I write hello in the texbox. Now I want to show this page
with the textbox in which hello is written.
I cannot use response. redirect or server. transfer because when the
1st application displays it wont show the textbox with Hello written
in it.
So how can I implement Page.show in web.
Thanx in advance!