asp.net c# textbox array
-
how to use array in asp.net textbox ex : when I press the save button the value of text which i fill will be write on response.write?? how ????
-
how to use array in asp.net textbox ex : when I press the save button the value of text which i fill will be write on response.write?? how ????
Hi, You can create Indexer with one property of returnType as TextBox. you also need to create one method to get and to set textBox with it's data. -Amit
-
how to use array in asp.net textbox ex : when I press the save button the value of text which i fill will be write on response.write?? how ????
-
how to use array in asp.net textbox ex : when I press the save button the value of text which i fill will be write on response.write?? how ????
public void save_click() { response.write(nr1.Text); response.write(nr2.Text); response.write(nr3.Text); }
-
how to use array in asp.net textbox ex : when I press the save button the value of text which i fill will be write on response.write?? how ????
Response.Write(txt1.text+txt2.text+txt3.text);