in vb.net,
if i want to pass textbox value from one for to other
i wrote the code as follows
in form one
public shared txt as textbox
in button_clk event
txt=textbox1
dim f as new form2
f.show
in form two
me.textbox1.text=form1.txt.text
its working fine
now i made both textboxes lin form1 and form2 modes as passwords in ASP.NET
then the value in the form1 textbox1 is not passed to lthe second form
now what can i do
thnks
if i want to pass textbox value from one for to other
i wrote the code as follows
in form one
public shared txt as textbox
in button_clk event
txt=textbox1
dim f as new form2
f.show
in form two
me.textbox1.text=form1.txt.text
its working fine
now i made both textboxes lin form1 and form2 modes as passwords in ASP.NET
then the value in the form1 textbox1 is not passed to lthe second form
now what can i do
thnks