Home All Groups Group Topic Archive Search About

How do I create an "event" to deal with textarea and DataGrid?

Author
20 Apr 2005 12:35 PM
aaa
I have a (bound) DataGrid that basically takes comment text from one of its
columns and puts it in an HTML text box.  So when a user selects each row it
fills the text area with that comment text. Seems simple enough I have that
part working. but now I just realized I have to put that data back into the
comment column of the DataGrid for it to be put back in the database. But I
have to do that clientside after the user has finished entering data into
the textarea?

Author
20 Apr 2005 9:50 PM
Alvin Bruney [MVP - ASP.NET]
handle the onblur or ontextchange or some similar event and push the data
across using a form post or some other method

--
Regards,
Alvin Bruney - ASP.NET MVP

[Shameless Author Plug]
The Microsoft Office Web Components Black Book with .NET
Now available @ www.lulu.com/owc
Show quoteHide quote
"aaa" <some***@microsoft.com> wrote in message
news:OP1AkVaRFHA.248@TK2MSFTNGP15.phx.gbl...
>I have a (bound) DataGrid that basically takes comment text from one of its
> columns and puts it in an HTML text box.  So when a user selects each row
> it
> fills the text area with that comment text. Seems simple enough I have
> that
> part working. but now I just realized I have to put that data back into
> the
> comment column of the DataGrid for it to be put back in the database. But
> I
> have to do that clientside after the user has finished entering data into
> the textarea?
>
>