2011-11-11 18 views
5

A continuación se muestra el código simple de usar estado de control en un control personalizado,Cómo utilizar estado de control en asp.net

[DefaultProperty("Text")] 
[ToolboxData("<{0}:WebCustomControl1 runat=server></{0}:WebCustomControl1>")] 
public class WebCustomControl1 : WebControl 
{ 
    [Bindable(true)] 
    [Category("Appearance")] 
    [DefaultValue("")] 
    [Localizable(true)] 
    public string Text 
    { 
     get { return text; } 
     set { text = value; } 
    } 
    private string text; 

    protected override void RenderContents(HtmlTextWriter output) 
    { 
     output.Write(Text); 
    } 

    protected override void OnInit(System.EventArgs e) 
    { 
     base.OnInit(e); 
     Page.RequiresControlState(this); 
    } 

    protected override object SaveControlState() 
    { 
     object baseSate = base.SaveControlState(); 
     return new Pair(baseSate, Text); 
    } 

    protected override void LoadControlState(object savedState) 
    { 
     Pair value = savedState as Pair; 
     text = value.Second; 
    } 
} 

Pero no parece funcionar .. El SaveControlState y LoadControlState no están disparando . alguien me puede ayudar..?

A continuación se muestra el código aspx. Aquí es donde uso el control personalizado.

<%@ Page Language="C#" AutoEventWireup="true" EnableViewState="true" CodeBehind="Default.aspx.cs" Inherits="WebApplication1._Default" %> 

<%@ Register Assembly="WebApplication1" Namespace="WebApplication1" TagPrefix="cc1" %> 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 

<html xmlns="http://www.w3.org/1999/xhtml" > 
<head runat="server"> 
    <title>Untitled Page</title> 
</head>`enter code here` 
<body> 
    <form id="form1" runat="server"> 
    <div> 
     <cc1:WebCustomControl1 ID="WebCustomControl1_1" runat="server" /> 
     <asp:Button ID="Button1" runat="server" Text="Button" /></div> 
    </form> 
</body> 
</html> 
+0

puede mostrar el código de marcado para el control en .aspx página –

Respuesta

7

usted ha llamado RequiresControlState

Determina si el objeto de control especificado se ha registrado para participar en estado de control management.`

Pero debe llamar RegisterRequiresControlState

Registra un control como uno cuyo estado de control m ust ser persistido.

+0

Muchas gracias por la publicación. – Muthukumar

Cuestiones relacionadas