Re: Newbie question concerning page load event



Does the textbox have a autopostback property. If so set it to true and see
what happens.

--
TDAVISJR
aka - Tampa.NET Koder


"sam" <samuelrobertson@xxxxxxxxx> wrote in message
news:1116351570.182972.152720@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
>I believe i understand your question.
>
> Text changed is not defined to fire for changes you make
> programatically on the server. Technically, what happens is the text
> box's posted form value is compared with the view state restored value
> (which occurs in LoadViewState phase). If they are different a change
> event is raised (in RaiseChangedEvents phase). It doesn't care about
> changes you make on the server.
>
> I don't know how much you already understand about it, but you
> absolutely have to understand the page lifecycle to understand asp.net
> (although this question doesn't really touch on that) .Here is a good
> link
> http://aspalliance.com/articleViewer.aspx?aId=134&pId=
>


.



Relevant Pages