Hello Clyde,
if you want to display the page from windows based application then you can
use
Process process=new Process();
process.Start("http://www.xyz.com");
or else if you want to display the page from Web application then you can
use either Server.Transfer("http://www.xyz.com"); or Response.Redirect("
http://www.xyz.com");
*Thanks And Regards,
Sriguru Pattanayak
*
On Sun, Jan 2, 2011 at 11:22 PM, Clyde <[email protected]> wrote:
> 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!