How to fill textbox from another Window?

  • Thread starter Thread starter TakeshiKitano
  • Start date Start date
T

TakeshiKitano

Guest
Hi all,

I know how to pass a value from one to another window/page. But how to fill a textbox, which is in SomePage from AnotherWindow ..... I tried this ...

function in SomeWindow

SomePage sp = new SomePage();
sp.txtName.Text = "some text";

... but without success

In this way I know how to run function ... sp.some_function(); but no to fill a textBox

thanks for answers

Continue reading...
 
Back
Top