Custom composite control [2]-raises cache events

Source: Internet
Author: User
Using System;
Using System. Web. UI;
Using System. Web. UI. webcontrols;
Using System. componentmodel;

Namespace Csmathcontrol
{
///   <Summary>
/// Cache events
///   </Summary>
[Defaultproperty ( " Text " ),
Toolboxdata ( " <{0}: rendertext runat = Server> </{0}: rendertext> " )]
Public   Class Rendertext: system. Web. UI. webcontrols. webcontrol
{

[Bindable ( True ),
Category ( " Appearance " ),
Defaultvalue ( "" )]
Public   String Text
{
Get
{
If (Viewstate [ " Text " ] ! = Null )
Return Viewstate [ " Text " ]. Tostring ();
Else
Return   Null ;
}
Set
{
Viewstate [ " Text " ] = Value;
Onchange (eventargs. Empty );
}
}
///   <Summary>  
/// This control is displayed to the specified output parameter.
///   </Summary>
///   <Param name = "output"> HTML writer to write </Param>
Protected   Override   Void Render (htmltextwriter output)
{
// Output. Write (text );
Output. addattribute ( " Value " , This . Text );
Output. renderbegintag ( " Input " );
Output. renderendtag ();
}
// --------------- Event --------------------
///
Public   Event Eventhandler change;
Protected   Virtual   Void Onchange (eventargs E)
{
If (Change ! = Null )
Change ( This , E );
}
// ----------------------------------
}
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.