i am usinjg ajax technology with c# code behind. i have created html table using c# just like
Response.Write( "<table>");
....
....
....
Response.Write( "</table>");
i want to display text box inside table cell only at when i click the cell of a table,
and after i type some text and if press enter key, the curent text box in the cell need to be invisible and combo box in next cell should be visibled. and the typed data in text box should be placed in particular cell. atlast i want to read all the data from from table and store in database. help me with sample code plz..
Response.Write( "<table>");
....
....
....
Response.Write( "</table>");
i want to display text box inside table cell only at when i click the cell of a table,
and after i type some text and if press enter key, the curent text box in the cell need to be invisible and combo box in next cell should be visibled. and the typed data in text box should be placed in particular cell. atlast i want to read all the data from from table and store in database. help me with sample code plz..
Comment