Ask a Question related to ASP.NET General, Design and Development.
-
William F. Robertson, Jr. #1
LoadPostData
I have a control called UniqueTextBox, that implements the
IPostBackDataHandler.
I have trying to use the control in a composite control called
UniqueTextBoxEx.
The LoadPostData method of the UniqueTextBox is never getting called.
What do I have to do to have child controls process their own postdata?
Thanks,
bill
William F. Robertson, Jr. Guest
-
LoadPostData method called twice
Hi Everyone, I am building an ASP.NET server control. It implements the IPostBackDataHandler interface. My code contains implementation for both... -
System.OverflowException during IPostBackDataHandler.LoadPostData
During my postbacks, I try to assign the value from an Input tag to a property of a custom control. However, I keep recieving the following error: ... -
LoadPostData NullReferenceException
I have a webcontrol which renders a select | option html control. I have implemented IPostBackDataHandler with LoadPostData looking like this: ... -
Why LoadPostData() is not called?
After pressing button its text becomes clear and no matter what text has been entered in textbox near it. Whats wrong to my project? ... -
LoadPostData not firing
I am trying to create a control that inherits from ListControl. I am implementing the IPostBackDataHandler, but the LoadPostData method is never... -
William F. Robertson, Jr. #2
Re: LoadPostData
When I was writing out the control for the non-composite control, I was
writing out name= this.ID.
When I changed it over to name=this.UniqueID, the LoadPostData method was
called and worked like a charm.
bill
"William F. Robertson, Jr." <wfrobertson@kpmg.com> wrote in message
news:eXgPzxHUDHA.2316@tk2msftngp13.phx.gbl...> I have a control called UniqueTextBox, that implements the
> IPostBackDataHandler.
>
> I have trying to use the control in a composite control called
> UniqueTextBoxEx.
>
> The LoadPostData method of the UniqueTextBox is never getting called.
>
> What do I have to do to have child controls process their own postdata?
>
> Thanks,
>
> bill
>
>
>
>
William F. Robertson, Jr. Guest



Reply With Quote

