javascript inputbox and datagrid

  • Thread starter Thread starter Reza Alirezaei
  • Start date Start date
R

Reza Alirezaei

Is ther a way to insert output of a javascript inputbox into a datagrid in
asp.net application with c#?
 
Hi,

basically yes. you can fill the postback fields with event data
(__EVENTTARGET, __EVENTARGUMENT), hidden field with inputbox return
value and submit the form (using DHTML). this will cause server side
event where you can add data to your grid.

You can save all those server roundtrip and use DHTML to change grid
values ...

Natty Gur[MVP]

blog : http://weblogs.asp.net/ngur
Mobile: +972-(0)58-888377
 
Back
Top