Ask a Question related to ASP.NET Building Controls, Design and Development.
-
Chris #1
Postback to a Custom Control URGENT!!
Does anyone have any examples of how to handle postback to a derived class
custom control from the hosting main page or a popup child window from the
main page?
And then storing information in a variable declared in the control?
Any help would be greatly apprectiated!
Thanks in advance.
Chris Guest
-
Problem with Postback and custom datagrid control
Can any body help... I have a custom control drived out of datagrid control, which I am using in a user control. Based on certain events this... -
custom control onblur postback
I have a custom control with a textbox and dropdown list. The dropdown list is hidden and acts as a data source for the textbox. When the user... -
Implementing postback functionality in custom control
Here is my situation. I first made a custom composite control (consisting of a textbox and button) that does a whois lookup based on the domain name... -
Custom Control Postback Problem
Can you post the code you used to set the name and id? Thanks! "Raymond" wrote: -
Custom checkbox control and postback
Hello, please help me I create a set of custom controls with IPostBackDataHandler, and postback processing. All worked correctly, only custom... -
ccallen #2
Re: Postback to a Custom Control URGENT!!
Quickstart/aspplus/samples/webforms/ctrlauth/composition/cs/composition3.cs
(from the .net sdk) has two events (AddBtn_Click & SubtractBtn_Click) that
changes a value stored in a text box.
The storage method could be modified to use a member variable (or viewstate
(not shown)):
protected string _value;
public string Value {
get { return _value; }
set { _value = value.ToString(); }
}
composition then fires the Change event in the parent page. The parent can
access the controls public properties, Value in this case.
ccallen
"Chris" <calhoun_chris@hotmail.com> wrote in message
news:uAD4dNeMEHA.3988@TK2MSFTNGP09.phx.gbl...> Does anyone have any examples of how to handle postback to a derived class
> custom control from the hosting main page or a popup child window from the
> main page?
> And then storing information in a variable declared in the control?
>
> Any help would be greatly apprectiated!
> Thanks in advance.
>
>
ccallen Guest



Reply With Quote

