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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top